From e23bcdc43ad7fe3fe3c637447e5d4893db97d6a3 Mon Sep 17 00:00:00 2001 From: maier Date: Sun, 15 Sep 2013 16:27:20 +0000 Subject: [PATCH] Update documentation and fix log output git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30717 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/README | 4 ++-- tests/all-headers/CMakeLists.txt | 4 ++++ tests/build_tests/CMakeLists.txt | 3 +++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/tests/README b/tests/README index 7788bbc507..7dc46144ac 100644 --- a/tests/README +++ b/tests/README @@ -101,7 +101,7 @@ How to set up and run the testsuite 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 @@ -145,7 +145,7 @@ Setup only a subset of tests 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="" . + # cmake -DTESTSUITE=ON -DTEST_PICKUP_REGEX="" . Note: If you wish to disable this filter again, undefine TEST_PICKUP_REGEX in the Cache: diff --git a/tests/all-headers/CMakeLists.txt b/tests/all-headers/CMakeLists.txt index a3cb5dca3d..e1521c170b 100644 --- a/tests/all-headers/CMakeLists.txt +++ b/tests/all-headers/CMakeLists.txt @@ -23,6 +23,8 @@ # SET(_category all-headers) +MESSAGE(STATUS "Process ./tests/${_category}") + FILE(GLOB_RECURSE _header ${CMAKE_SOURCE_DIR}/include/*.h) FOREACH(_full_file ${_header}) @@ -68,3 +70,5 @@ FOREACH(_full_file ${_header}) ENDIF() ENDFOREACH() ENDFOREACH() + +MESSAGE(STATUS "Process ./tests/${_category} - Done") diff --git a/tests/build_tests/CMakeLists.txt b/tests/build_tests/CMakeLists.txt index 99aab0fc5d..2bb8d008b8 100644 --- a/tests/build_tests/CMakeLists.txt +++ b/tests/build_tests/CMakeLists.txt @@ -26,6 +26,7 @@ # SET(_category build_tests) +MESSAGE(STATUS "Process ./tests/${_category}") # Run a minimalistic set of steps in debug configuration: SET(_debug_steps @@ -155,3 +156,5 @@ FOREACH(_step_full ${_steps}) ENDIF() ENDFOREACH() ENDFOREACH() + +MESSAGE(STATUS "Process ./tests/${_category} - Done") -- 2.39.5