summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-03-06 20:39:29 +1100
committerChris Johns <chrisj@rtems.org>2019-03-07 06:33:47 +1100
commit96e4b2231274429569cda56d965bcc11d8009800 (patch)
treee2cbbb277f99ed2ac864fb63fe2aed08a28b3604 /testsuites/aclocal
parenttestsuite: Add rexclude, rinclude and cflags to test config files. (diff)
downloadrtems-96e4b2231274429569cda56d965bcc11d8009800.tar.bz2
testsuite: Make the OPERATION_COUNT a test configuration parameter.
- Add a small memory test config file. - Update the small memory PowerPC BSPs to use the new test config.
Diffstat (limited to 'testsuites/aclocal')
-rw-r--r--testsuites/aclocal/rtems-test-check.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/aclocal/rtems-test-check.m4 b/testsuites/aclocal/rtems-test-check.m4
index 36a917b3e8..a0feee5e15 100644
--- a/testsuites/aclocal/rtems-test-check.m4
+++ b/testsuites/aclocal/rtems-test-check.m4
@@ -15,17 +15,17 @@ AC_DEFUN([RTEMS_TEST_CHECK],
fi
if test "$1" = "$check_result"; then
if test -f $tcheck; then
- test_FLAGS=`$tcheck flags ${RTEMS_BSP} $tdata $tincludes $1`
+ test_CFLAGS=`$tcheck cflags ${RTEMS_BSP} $tdata $tincludes $1`
fi
- if test -z "$test_FLAGS"; then
+ if test -z "$test_CFLAGS"; then
result_msg="PASS"
else
- result_msg="$test_FLAGS"
+ result_msg="$test_CFLAGS"
fi
else
result_msg="EXCLUDED"
fi
AC_MSG_RESULT([$result_msg])
AM_CONDITIONAL([TEST_$1], [test "$result_msg" != "EXCLUDED"])
- AC_SUBST([TEST_FLAGS_$1], [$test_FLAGS])
+ AC_SUBST([TEST_FLAGS_$1], [$test_CFLAGS])
])