summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/rtems-test-no-pause.m4
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-12-02 08:14:34 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-12-04 07:40:32 +0100
commita6879a418dee37c31728af0d2491cb8924f23de3 (patch)
tree2c79f43cac803cbbaba35d2162d45a88dbaf8030 /testsuites/aclocal/rtems-test-no-pause.m4
parentlibtest: Change expected fail state string (diff)
downloadrtems-a6879a418dee37c31728af0d2491cb8924f23de3.tar.bz2
testsuites: Remove rtems_test_pause*()
The rtems_test_pause() and rtems_test_pause_and_screen_number() macros had different implementations depending on the RTEMS_TEST_NO_PAUSE define. This define was defined to 1 by default. The user was able to change this via the undocumented --disable-test-no-pause configure command line option. Pausing tests and waiting for user input contradicts the goal of having automated test runs. Remove this feature. Update #3818.
Diffstat (limited to '')
-rw-r--r--testsuites/aclocal/rtems-test-no-pause.m418
1 files changed, 0 insertions, 18 deletions
diff --git a/testsuites/aclocal/rtems-test-no-pause.m4 b/testsuites/aclocal/rtems-test-no-pause.m4
deleted file mode 100644
index 338f0cddf1..0000000000
--- a/testsuites/aclocal/rtems-test-no-pause.m4
+++ /dev/null
@@ -1,18 +0,0 @@
-AC_DEFUN([RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE],
-[AC_ARG_ENABLE(test-no-pause,
-AS_HELP_STRING(--disable-test-no-pause,disable RTEMS_TEST_NO_PAUSE),
-[case "${enableval}" in
- yes) RTEMS_TEST_NO_PAUSE=yes ;;
- no) RTEMS_TEST_NO_PAUSE=no ;;
- *) AC_MSG_ERROR([bad value ${enableval} for RTEMS_TEST_NO_PAUSE]) ;;
-esac],[RTEMS_TEST_NO_PAUSE=yes])
-])
-
-AC_DEFUN([RTEMS_CHECK_RTEMS_TEST_NO_PAUSE],
-[AC_REQUIRE([RTEMS_ENABLE_RTEMS_TEST_NO_PAUSE])
-if test x"${RTEMS_TEST_NO_PAUSE}" = x"yes";
-then
- AC_DEFINE_UNQUOTED(RTEMS_TEST_NO_PAUSE,1,[if RTEMS_TEST_NO_PAUSE is enabled])
-fi
-])
-