diff options
author | Keith Packard <keithp@keithp.com> | 2025-02-25 19:30:09 -0800 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2025-03-01 19:33:37 +1300 |
commit | 7458341776f14d4d12e6d6fe51382e87e832894f (patch) | |
tree | a5519e994458b46e6cdbecd3c607be2dfede9623 /config/test_suite.in | |
parent | 5a11188bd0540e4780e7c5c9b51299f3ec8308fc (diff) | |
download | crosstool-ng-7458341776f14d4d12e6d6fe51382e87e832894f.tar.gz crosstool-ng-7458341776f14d4d12e6d6fe51382e87e832894f.tar.bz2 crosstool-ng-7458341776f14d4d12e6d6fe51382e87e832894f.zip |
contrib/gcc-test-suite: Add configuration options including qemu setup
This makes the options necessary to run the gcc test suite
configurable in the crosstool-ng config file.
That includes the ability to run the test suite using qemu instead of
on a remote host.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'config/test_suite.in')
-rw-r--r-- | config/test_suite.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/test_suite.in b/config/test_suite.in index 978635d3..8cfe1434 100644 --- a/config/test_suite.in +++ b/config/test_suite.in @@ -17,11 +17,14 @@ config TEST_SUITE_GCC The GCC test suite includes a collection of various toolchain tests for GCC - it utilizes the DejaGnu test framework. - For some tests a network enabled target with ssh server is required. - A helper Makefile is provided for running the tests - please see the included README for information on how to run the test suite. +if TEST_SUITE_GCC +source "config/contrib/gcc-test-suite.in" +endif + endmenu endif + |