From a6879a418dee37c31728af0d2491cb8924f23de3 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 2 Dec 2019 08:14:34 +0100 Subject: 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. --- testsuites/aclocal/rtems-test-no-pause.m4 | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 testsuites/aclocal/rtems-test-no-pause.m4 (limited to 'testsuites/aclocal/rtems-test-no-pause.m4') 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 -]) - -- cgit v1.2.3