config/test_suite.in
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:30:37 2010 +0200 (2010-07-29)
changeset 2044 20dd8cef1c8a
child 2484 d1a8c2ae7946
permissions -rw-r--r--
scripts: remove . from $PATH

Add CT_SanitizePath function which removes entries referring to ., /tmp
and non-existing directories from $PATH, and call it early in the
build script.

If . is in PATH, gcc-4.4.4 build breaks:

[ALL ] checking what assembler to use...
/tmp/build/targets/arm-unknown-linux-uclibcgnueabi/build/gcc-core-static/arm-unknown-linux-uclibcgnueabi/bin/as
...
[ALL ] config.status: creating as

i.e. "as" is supposed to be the arm-unknown-linux-uclibcgnueabi cross assembler,
but config.status creates a local "as" script which is calling the
host assembler.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
[Yann E. MORIN: style fixes + explanations]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
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
    default n
mgl@1965
    10
mgl@1965
    11
config TEST_SUITE_GCC
mgl@1965
    12
    bool
mgl@1965
    13
    prompt "GCC test suite"
mgl@1965
    14
    depends on EXPERIMENTAL
mgl@1965
    15
    default n
mgl@1965
    16
    select TEST_SUITE
mgl@1965
    17
    help
mgl@1965
    18
      Select this option to install the GCC test suite in $CT_PREFIX_DIR/test_suite.
mgl@1965
    19
mgl@1965
    20
      The GCC test suite includes a collection of various toolchain tests for GCC -
mgl@1965
    21
      it utilizes the DejaGnu test framework.
mgl@1965
    22
mgl@1965
    23
      For some tests a network enabled target with ssh server is required.
mgl@1965
    24
mgl@1965
    25
      A helper Makefile is provided for running the tests - please see the included 
mgl@1965
    26
      README for information on how to run the test suite.
mgl@1965
    27
mgl@1965
    28
endmenu
mgl@1965
    29
mgl@1965
    30
endif