#
# A Macro to pick up all tests in a test subdirectory
#
-# If DEAL_II_PICKUP_REGEX is set, only tests matching the regex will be
+# If TEST_PICKUP_REGEX is set, only tests matching the regex will be
# processed.
#
# Usage:
FOREACH(_test ${_tests})
- IF( "${DEAL_II_PICKUP_REGEX}" STREQUAL "" OR
- _test MATCHES "${DEAL_II_PICKUP_REGEX}" )
+ IF( "${TEST_PICKUP_REGEX}" STREQUAL "" OR
+ _test MATCHES "${TEST_PICKUP_REGEX}" )
GET_FILENAME_COMPONENT(_test ${_test} NAME)
IF(_test MATCHES debug)
# Setup and run the testsuite:
#
# TODO: Describe and document the following:
-# DEAL_II_TEST_DIFF
-# DEAL_II_TEST_TIME_LIMIT
+# TEST_DIFF
+# TEST_TIME_LIMIT
# NUMDIFF_DIR
#
ENDIF()
IF(NOT NUMDIFF_EXECUTABLE MATCHES "-NOTFOUND")
- SET_IF_EMPTY(DEAL_II_TEST_DIFF numdiff -a 1e-6 -q -s ' \t\n:')
+ SET_IF_EMPTY(TEST_DIFF ${NUMDIFF_EXECUTABLE} -a 1e-6 -q -s ' \t\n:')
ELSE()
- SET_IF_EMPTY(DEAL_II_TEST_DIFF diff)
+ SET_IF_EMPTY(TEST_DIFF ${DIFF_EXECUTABLE})
ENDIF()
#
# Set a default time limit of 60 seconds:
#
-SET_IF_EMPTY(DEAL_II_TEST_TIME_LIMIT 120)
+SET_IF_EMPTY(TEST_TIME_LIMIT 120)
MESSAGE(STATUS "Proceed to test definitions")
#$(if $(USE_CONTRIB_SLEPC:no=), slepc,) \
#$(if $(USE_CONTRIB_TRILINOS:no=), trilinos,) \
-ADD_SUBDIRECTORY(a-framework)
+ADD_SUBDIRECTORY(a-framework) -- what do?
ADD_SUBDIRECTORY(aniso)
ADD_SUBDIRECTORY(base)
ADD_SUBDIRECTORY(bits)
ADD_SUBDIRECTORY(codim_one)
ADD_SUBDIRECTORY(deal.II)
-ADD_SUBDIRECTORY(fail)
+#ADD_SUBDIRECTORY(fail) -- the good old failing tests
ADD_SUBDIRECTORY(fe)
ADD_SUBDIRECTORY(grid)
ADD_SUBDIRECTORY(hp)