]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Next try
authorMatthias Maier <tamiko@kyomu.43-1.org>
Tue, 3 Sep 2013 03:16:56 +0000 (03:16 +0000)
committerMatthias Maier <tamiko@kyomu.43-1.org>
Tue, 3 Sep 2013 03:16:56 +0000 (03:16 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30568 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/cmake/macros/macro_deal_ii_add_test.cmake

index dfbed272155c8c0755f3e1485bb0befaf0d35841..4223836a40fccfc6aba451944b42217144b3523e 100644 (file)
@@ -79,47 +79,46 @@ MACRO(DEAL_II_ADD_TEST _category _test_name)
         ${DEAL_II_BASE_NAME}${DEAL_II_${_build}_SUFFIX}
         )
 
-      ADD_CUSTOM_TARGET(${_full_test}.build
-        COMMAND ${CMAKE_COMMAND} -E echo "${_full_test}: BUILD successful              -------------------"
-        DEPENDS ${_full_test}
-        )
+
+      #
+      # Determine correct file for comparison:
+      #
+
+      SET(_comparison ${CMAKE_CURRENT_SOURCE_DIR}/${_test_name})
+      IF(EXISTS ${_comparison}.${_build_lowercase}.output)
+        SET(_comparison ${_comparison}.${_build_lowercase}.output)
+      ELSE()
+        SET(_comparison ${_comparison}.output)
+      ENDIF()
 
 
       #
-      # Add a top level target to run the test...
+      # Add a top level target to run and compare the test:
       #
+
       ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_test}/output
+        COMMAND
+          # A this stage a build is always successful: :-)
+          ${CMAKE_COMMAND} -E echo "${_full_test}: BUILD successful"
         COMMAND
           ${_full_test}
-          || (echo "Running the test failed with the following partial output:"
+          || (echo "${_full_test}: RUN failed. Output:"
               && cat output
               && rm output
               && exit 1)
         COMMAND
-            ${PERL_EXECUTABLE} -pi
-            ${CMAKE_SOURCE_DIR}/cmake/scripts/normalize.pl
-            ${CMAKE_CURRENT_BINARY_DIR}/${_test}/output
-        WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${_test}
-        DEPENDS ${_full_test} ${CMAKE_SOURCE_DIR}/cmake/scripts/normalize.pl
-        )
-
-      ADD_CUSTOM_TARGET(${_full_test}.run
-        COMMAND ${CMAKE_COMMAND} -E echo "${_full_test}: RUN successful                -------------------"
-        DEPENDS ${_full_test}.build
-                ${CMAKE_CURRENT_BINARY_DIR}/${_test}/output
+          ${PERL_EXECUTABLE} -pi
+          ${CMAKE_SOURCE_DIR}/cmake/scripts/normalize.pl
+          ${CMAKE_CURRENT_BINARY_DIR}/${_test}/output
+        COMMAND
+          ${CMAKE_COMMAND} -E echo "${_full_test}: RUN successful"
+        WORKING_DIRECTORY
+          ${CMAKE_CURRENT_BINARY_DIR}/${_test}
+        DEPENDS
+          ${_full_test}
+          ${CMAKE_SOURCE_DIR}/cmake/scripts/normalize.pl
         )
 
-
-      #
-      # and compare the output:
-      #
-      SET(_comparison ${CMAKE_CURRENT_SOURCE_DIR}/${_test_name})
-      IF(EXISTS ${_comparison}.${_build_lowercase}.output)
-        SET(_comparison ${_comparison}.${_build_lowercase}.output)
-      ELSE()
-        SET(_comparison ${_comparison}.output)
-      ENDIF()
-
       ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_test}/diff
         COMMAND
           ${TEST_DIFF}
@@ -128,22 +127,26 @@ MACRO(DEAL_II_ADD_TEST _category _test_name)
             > ${CMAKE_CURRENT_BINARY_DIR}/${_test}/diff
           || (mv ${CMAKE_CURRENT_BINARY_DIR}/${_test}/diff
                  ${CMAKE_CURRENT_BINARY_DIR}/${_test}/failing_diff
-              && echo ${CMAKE_CURRENT_BINARY_DIR}/${_test}/failing_diff
+              && echo "${_full_test}: DIFF failed. Output:"
+              && cat ${CMAKE_CURRENT_BINARY_DIR}/${_test}/failing_diff
               && exit 1)
+        COMMAND
+          ${CMAKE_COMMAND} -E echo "${_full_test}: DIFF successful"
+        WORKING_DIRECTORY
+          ${CMAKE_CURRENT_BINARY_DIR}/${_test}
         DEPENDS
           ${CMAKE_CURRENT_BINARY_DIR}/${_test}/output
           ${_comparison}
         )
+
       ADD_CUSTOM_TARGET(${_full_test}.diff
-        COMMAND ${CMAKE_COMMAND} -E echo "${_full_test}: DIFF successful               -------------------"
-        DEPENDS ${_full_test}.run
-                ${CMAKE_CURRENT_BINARY_DIR}/${_test}/diff
+        DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_test}/diff
         )
 
-
       #
       # And finally add the test:
       #
+
       ADD_TEST(NAME ${_category}/${_test}
         COMMAND ${CMAKE_COMMAND}
           -DTEST=${_full_test}

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


Typeset in Trocchi and Trocchi Bold Sans Serif.