source: rtems/aclocal/enable-tests.m4 @ a37be5c4

4.104.114.84.95
Last change on this file since a37be5c4 was a37be5c4, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/99 at 20:25:40

Eric Norum <eric@…> noticed that the documentation and
configure scripts did not match on the default value of --enable-tests.

  • Property mode set to 100644
File size: 475 bytes
Line 
1dnl $Id$
2
3AC_DEFUN(RTEMS_ENABLE_TESTS,
4[
5# If the tests are enabled, then find all the test suite Makefiles
6AC_MSG_CHECKING([if the test suites are enabled? ])
7tests_enabled=no
8AC_ARG_ENABLE(tests,
9[  --enable-tests                       enable tests (default:disabled)],
10  [case "${enableval}" in
11    yes) AC_MSG_RESULT(yes) ;;
12    no)  AC_MSG_RESULT(no) ; tests_enabled=no ;;
13    *)   AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
14  esac], AC_MSG_RESULT(no))
15])
Note: See TracBrowser for help on using the repository browser.