From: maier Date: Sun, 20 Oct 2013 18:34:22 +0000 (+0000) Subject: Implement TEST_OVERRIDE_LOCATION X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9385bd6ac7c1a370d283fe6e274cb95b537c7b7e;p=dealii-svn.git Implement TEST_OVERRIDE_LOCATION git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@31346 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/macros/macro_add_test.cmake b/deal.II/cmake/macros/macro_add_test.cmake index 67bc4fe0b9..0bda009a4c 100644 --- a/deal.II/cmake/macros/macro_add_test.cmake +++ b/deal.II/cmake/macros/macro_add_test.cmake @@ -28,13 +28,16 @@ # # # Usage: -# DEAL_II_ADD_TEST(category test_name comparison_file) +# DEAL_II_ADD_TEST(category test_name comparison_file [ARGN]) # # This macro assumes that a source file "./tests/category/.cc" # as well as the comparison file "./tests/category/" is # available in the testsuite. The output of compiled source file is # compared against the file comparison file. # +# [ARGN] is an optional list of additional output lines passed down to the +# run_test.cmake script and printed at the beginning of the test output. +# # This macro gets the following options from the comparison file name (have # a look at the testsuite documentation for details): # - usage of mpirun and number of simultaneous processes @@ -213,6 +216,7 @@ MACRO(DEAL_II_ADD_TEST _category _test_name _comparison_file) -DTRGT=${_diff_target} -DTEST=${_test_full} -DEXPECT=${_expect} + -DADDITIONAL_OUTPUT=${ARGN} -DDEAL_II_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${DEAL_II_SOURCE_DIR}/cmake/scripts/run_test.cmake WORKING_DIRECTORY ${_test_directory} diff --git a/deal.II/cmake/macros/macro_pickup_tests.cmake b/deal.II/cmake/macros/macro_pickup_tests.cmake index 9226c5e2ac..bd27351144 100644 --- a/deal.II/cmake/macros/macro_pickup_tests.cmake +++ b/deal.II/cmake/macros/macro_pickup_tests.cmake @@ -20,6 +20,10 @@ # If TEST_PICKUP_REGEX is set, only tests matching the regex will be # processed. # +# If TEST_OVERRIDE_LOCATION is set, a comparison file category/test.output +# will be substituted by ${TEST_OVERRIDE_LOCATION}/category/test.output if +# the latter exists. +# # Usage: # DEAL_II_PICKUP_TESTS() # @@ -69,9 +73,22 @@ MACRO(DEAL_II_PICKUP_TESTS) ENDIF() ENDFOREACH() + # + # Respect TEST_OVERRIDE_LOCATION: + # + + SET(_add_output) + IF(EXISTS ${TEST_OVERRIDE_LOCATION}/${_category}/${_test}) + SET(_add_output + "Note: Default comparison file ${_comparison} overriden by" + "${TEST_OVERRIDE_LOCATION}/${_category}/${_test}" + ) + SET(_comparison "${TEST_OVERRIDE_LOCATION}/${_category}/${_test}") + ENDIF() + IF(_define_test) STRING(REGEX REPLACE "\\..*" "" _test ${_test}) - DEAL_II_ADD_TEST(${_category} ${_test} ${_comparison}) + DEAL_II_ADD_TEST(${_category} ${_test} ${_comparison} ${_add_output}) ENDIF() ENDFOREACH() diff --git a/deal.II/cmake/scripts/run_test.cmake b/deal.II/cmake/scripts/run_test.cmake index 89edef1be3..981c8508c7 100644 --- a/deal.II/cmake/scripts/run_test.cmake +++ b/deal.II/cmake/scripts/run_test.cmake @@ -28,6 +28,8 @@ # (return value 0) # Possible values are CONFIGURE, BUILD, RUN, DIFF, PASSED # +# ADDITIONAL_OUTPUT - A list of additional output lines that should be printed +# IF("${EXPECT}" STREQUAL "") SET(EXPECT "PASSED") @@ -66,6 +68,10 @@ ENDIF() # Print out the test result: # +FOREACH(_line ${ADDITIONAL_OUTPUT}) + MESSAGE("Test ${TEST}: ${_line}") +ENDFOREACH() + MESSAGE("Test ${TEST}: ${_stage}") MESSAGE("=============================== OUTPUT BEGIN ===============================") diff --git a/deal.II/cmake/setup_testsuite.cmake b/deal.II/cmake/setup_testsuite.cmake index e9a250e0e4..cd334b751e 100644 --- a/deal.II/cmake/setup_testsuite.cmake +++ b/deal.II/cmake/setup_testsuite.cmake @@ -29,8 +29,9 @@ # environment or command line: # # TEST_DIFF -# TEST_TIME_LIMIT +# TEST_OVERRIDE_LOCATION # TEST_PICKUP_REGEX +# TEST_TIME_LIMIT # # @@ -50,6 +51,7 @@ SET_IF_EMPTY(DEAL_II_SOURCE_DIR $ENV{DEAL_II_SOURCE_DIR}) SET_IF_EMPTY(TEST_DIFF $ENV{TEST_DIFF}) SET_IF_EMPTY(TEST_TIME_LIMIT $ENV{TEST_TIME_LIMIT}) SET_IF_EMPTY(TEST_PICKUP_REGEX $ENV{TEST_PICKUP_REGEX}) +SET_IF_EMPTY(TEST_OVERRIDE_LOCATION $ENV{TEST_OVERRIDE_LOCATION}) # # We need deal.II and Perl as external packages: diff --git a/deal.II/doc/developers/testsuite.html b/deal.II/doc/developers/testsuite.html index 31573f99e8..9eb8dd343b 100644 --- a/deal.II/doc/developers/testsuite.html +++ b/deal.II/doc/developers/testsuite.html @@ -167,10 +167,6 @@ calling make setup_tests:
 
-    TEST_PICKUP_REGEX
-      - A regular expression to select only a subset of tests during setup.
-        An empty string is interpreted as a catchall (this is the default).
-
     TEST_DIFF
       - The diff tool and command line to use for comparison. If numdiff is
         available it defaults to "numdiff -a 1e-6 -q", otherwise plain diff
@@ -179,6 +175,15 @@
     TEST_TIME_LIMIT
       - The time limit (in seconds) a single test is allowed to take. Defaults
         to 180 seconds
+
+    TEST_PICKUP_REGEX
+      - A regular expression to select only a subset of tests during setup.
+        An empty string is interpreted as a catchall (this is the default).
+
+    TEST_OVERRIDE_LOCATION
+      - If TEST_OVERRIDE_LOCATION is set, a comparison file category/test.output
+        will be substituted by ${TEST_OVERRIDE_LOCATION}/category/test.output if
+        the latter exists.