From 96e4b2231274429569cda56d965bcc11d8009800 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 6 Mar 2019 20:39:29 +1100 Subject: 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. --- testsuites/aclocal/rtems-test-check.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'testsuites/aclocal') 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]) ]) -- cgit v1.2.3