mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
1779c82ad2
This patch adds support for installing the gcc test suite. A helper Makefile is provided for building and running the gcc tests. The default configuration runs all gcc tests and requires automatic ssh/scp login access to a networked target board. See README for more details. Note: Current feature is tested with the powerpc-unknown-linux-gnu sample but it should work with others as well. Signed-off-by: Martin Lund <mgl@doredevelopment.dk>
42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Wrapper to build the test suite facilities
|
|
#
|
|
# Current assumption: test suites are independent of each other
|
|
# - no order handling required.
|
|
|
|
# List all test suite facilities, and parse their scripts
|
|
CT_TEST_SUITE_FACILITY_LIST=
|
|
for f in "${CT_LIB_DIR}/scripts/build/test_suite/"*.sh; do
|
|
_f="$(basename "${f}" .sh)"
|
|
__f="CT_TEST_SUITE_${_f}"
|
|
__f=`echo ${__f} | tr "[:lower:]" "[:upper:]"`
|
|
if [ "${!__f}" = "y" ]; then
|
|
CT_DoLog DEBUG "Enabling test suite '${_f}'"
|
|
. "${f}"
|
|
CT_TEST_SUITE_FACILITY_LIST="${CT_TEST_SUITE_FACILITY_LIST} ${_f}"
|
|
else
|
|
CT_DoLog DEBUG "Disabling test suite '${_f}'"
|
|
fi
|
|
done
|
|
|
|
# Download the test suite facilities
|
|
do_test_suite_get() {
|
|
for f in ${CT_TEST_SUITE_FACILITY_LIST}; do
|
|
do_test_suite_${f}_get
|
|
done
|
|
}
|
|
|
|
# Extract and patch the test suite facilities
|
|
do_test_suite_extract() {
|
|
for f in ${CT_TEST_SUITE_FACILITY_LIST}; do
|
|
do_test_suite_${f}_extract
|
|
done
|
|
}
|
|
|
|
# Build the test suite facilities
|
|
do_test_suite() {
|
|
for f in ${CT_TEST_SUITE_FACILITY_LIST}; do
|
|
do_test_suite_${f}_build
|
|
done
|
|
}
|
|
|