summaryrefslogtreecommitdiffstats
path: root/macros/enable-tests.m4
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--macros/enable-tests.m415
1 files changed, 0 insertions, 15 deletions
diff --git a/macros/enable-tests.m4 b/macros/enable-tests.m4
deleted file mode 100644
index 31419f597a..0000000000
--- a/macros/enable-tests.m4
+++ /dev/null
@@ -1,15 +0,0 @@
-dnl $Id$
-
-AC_DEFUN(RTEMS_ENABLE_TESTS,
-[
-# If the tests are enabled, then find all the test suite Makefiles
-AC_MSG_CHECKING([if the test suites are enabled? ])
-AC_ARG_ENABLE(tests,
-[ --enable-tests enable tests (default:disabled)],
- [case "${enableval}" in
- yes) tests_enabled=yes ;;
- no) tests_enabled=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for tests option) ;;
- esac], [tests_enabled=no])
-AC_MSG_RESULT([$tests_enabled])
-])