From a4fa8cc1feddd2f838942839518f2a2bfea0c26c Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sat, 2 Nov 2013 18:54:52 +0000 Subject: [PATCH] make quicktests work again git-svn-id: https://svn.dealii.org/trunk@31513 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/tests/quick_tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/tests/quick_tests/CMakeLists.txt b/deal.II/tests/quick_tests/CMakeLists.txt index e8cac30ca9..a88ff5d18f 100644 --- a/deal.II/tests/quick_tests/CMakeLists.txt +++ b/deal.II/tests/quick_tests/CMakeLists.txt @@ -32,7 +32,7 @@ FOREACH(_build ${DEAL_II_BUILD_TYPES}) DEAL_II_INSOURCE_SETUP_TARGET(${_target} ${_build}) ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_target}-OK - COMMAND ${_target} > ${CMAKE_CURRENT_BINARY_DIR}/${_target}-OK 2>&1 || (rm ${_target}-OK && exit 1) + COMMAND ${_target} > ${CMAKE_CURRENT_BINARY_DIR}/${_target}-OK 2>&1 && echo "${_target}: PASSED." || (rm ${_target}-OK && exit 1) WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) ADD_CUSTOM_TARGET(${_target}.run DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_target}-OK) -- 2.39.5