config/test_suite.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun May 11 23:43:52 2014 +0200 (2014-05-11)
changeset 3320 78af1c99bc6d
parent 2484 d1a8c2ae7946
permissions -rw-r--r--
scripts/functions: add target_endian_le and target_endian_be

We currently define target_endian_el and target_endian_eb to be the
tuple extension depending on endianness, defined to be respectively
'el' or 'eb' according to the endianness.

Some architecture do not use 'el' or 'eb', but use 'le' or 'be'.

Provide that as well, as two new variables: target_endian_le and
target_endian_be.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
mgl@1965
     1
# Test suite config options
mgl@1965
     2
mgl@1965
     3
if EXPERIMENTAL
mgl@1965
     4
mgl@1965
     5
menu "Test suite"
mgl@1965
     6
mgl@1965
     7
config TEST_SUITE
mgl@1965
     8
    bool
mgl@1965
     9
mgl@1965
    10
config TEST_SUITE_GCC
mgl@1965
    11
    bool
mgl@1965
    12
    prompt "GCC test suite"
mgl@1965
    13
    select TEST_SUITE
mgl@1965
    14
    help
mgl@1965
    15
      Select this option to install the GCC test suite in $CT_PREFIX_DIR/test_suite.
mgl@1965
    16
mgl@1965
    17
      The GCC test suite includes a collection of various toolchain tests for GCC -
mgl@1965
    18
      it utilizes the DejaGnu test framework.
mgl@1965
    19
mgl@1965
    20
      For some tests a network enabled target with ssh server is required.
mgl@1965
    21
benoit@2484
    22
      A helper Makefile is provided for running the tests - please see the included
mgl@1965
    23
      README for information on how to run the test suite.
mgl@1965
    24
mgl@1965
    25
endmenu
mgl@1965
    26
mgl@1965
    27
endif