source: rtems/testsuites/rhealstone/configure.ac @ a6879a4

5
Last change on this file since a6879a4 was a6879a4, checked in by Sebastian Huber <sebastian.huber@…>, on 12/02/19 at 07:14:34

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.

  • Property mode set to 100644
File size: 793 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-tests-rhealstone],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([rhtaskswitch])
6AC_CONFIG_HEADER([config.h])
7RTEMS_TOP([../..],[..])
8RTEMS_SOURCE_TOP
9RTEMS_BUILD_TOP
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.12.2])
14AM_MAINTAINER_MODE
15
16RTEMS_ENV_RTEMSBSP
17
18RTEMS_PROJECT_ROOT
19
20RTEMS_PROG_CC_FOR_TARGET
21
22RTEMS_CANONICALIZE_TOOLS
23
24RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
25
26# BSP Test configuration
27RTEMS_TEST_CHECK([rhdeadlockbrk])
28RTEMS_TEST_CHECK([rhilatency])
29RTEMS_TEST_CHECK([rhmlatency])
30RTEMS_TEST_CHECK([rhsemshuffle])
31RTEMS_TEST_CHECK([rhtaskpreempt])
32RTEMS_TEST_CHECK([rhtaskswitch])
33
34AC_CONFIG_FILES([Makefile])
35AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.