git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30717
0785d39b-7218-0410-832d-
ea1e28bc413d
To enable the testsuite, configure deal.II in a build directory with
- # cmake -DBUILD_TESTING=ON .
+ # cmake -DTESTSUITE=ON .
After you have build deal.II as usual (installation is not necessary) you
can run the testsuite in the _build directory_ via
It is possible to set up only a subset of tests that match a regular
expression during configuration:
- # cmake -DBUILD_TESTING=ON -DTEST_PICKUP_REGEX="<regular expression>" .
+ # cmake -DTESTSUITE=ON -DTEST_PICKUP_REGEX="<regular expression>" .
Note: If you wish to disable this filter again, undefine TEST_PICKUP_REGEX
in the Cache:
#
SET(_category all-headers)
+MESSAGE(STATUS "Process ./tests/${_category}")
+
FILE(GLOB_RECURSE _header ${CMAKE_SOURCE_DIR}/include/*.h)
FOREACH(_full_file ${_header})
ENDIF()
ENDFOREACH()
ENDFOREACH()
+
+MESSAGE(STATUS "Process ./tests/${_category} - Done")
#
SET(_category build_tests)
+MESSAGE(STATUS "Process ./tests/${_category}")
# Run a minimalistic set of steps in debug configuration:
SET(_debug_steps
ENDIF()
ENDFOREACH()
ENDFOREACH()
+
+MESSAGE(STATUS "Process ./tests/${_category} - Done")
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams