config/test_suite.in
author Andy Gibbs <andyg1001@hotmail.co.uk>
Mon Nov 01 01:12:39 2010 +0100 (2010-11-01)
changeset 2170 4f8aa694f9c0
child 2484 d1a8c2ae7946
permissions -rw-r--r--
contrib: fix gcc test suite on system without echo -e

Fix the use of quotes in contrib/gcc-test-suite/Makefile to solve the
problem where board.exp is incorrectly generated on some build systems
where 'echo -e' is not handled correctly.

Signed-off-by: Andy Gibbs <andyg1001@hotmail.co.uk>
[Yann E. MORIN: fix space damage, pretty-up the stuff]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # Test suite config options
     2 
     3 if EXPERIMENTAL
     4 
     5 menu "Test suite"
     6 
     7 config TEST_SUITE
     8     bool
     9     default n
    10 
    11 config TEST_SUITE_GCC
    12     bool
    13     prompt "GCC test suite"
    14     depends on EXPERIMENTAL
    15     default n
    16     select TEST_SUITE
    17     help
    18       Select this option to install the GCC test suite in $CT_PREFIX_DIR/test_suite.
    19 
    20       The GCC test suite includes a collection of various toolchain tests for GCC -
    21       it utilizes the DejaGnu test framework.
    22 
    23       For some tests a network enabled target with ssh server is required.
    24 
    25       A helper Makefile is provided for running the tests - please see the included 
    26       README for information on how to run the test suite.
    27 
    28 endmenu
    29 
    30 endif