From ad0d7b862f83e750e8b7a3daaf9348592cb807aa Mon Sep 17 00:00:00 2001 From: maier Date: Wed, 21 Aug 2013 05:52:50 +0000 Subject: [PATCH] Better output messages git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30368 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/scripts/run_test.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/cmake/scripts/run_test.cmake b/deal.II/cmake/scripts/run_test.cmake index 5d6e84f2f8..10bcad37e7 100644 --- a/deal.II/cmake/scripts/run_test.cmake +++ b/deal.II/cmake/scripts/run_test.cmake @@ -17,22 +17,22 @@ MACRO(CALLBACK _target _msg_success _msg_error) ELSE() - MESSAGE("${_target}: ${_msg_error}:") + MESSAGE("*** ${_msg_error}: ***") MESSAGE(${_output}) - MESSAGE(FATAL_ERROR "${TEST}: Test aborted.") + MESSAGE(FATAL_ERROR "*** Test aborted.") ENDIF() ENDMACRO() CALLBACK(${TEST} - "Build successful" "Build failed with the following error message" + "Build successful" "BUILD FAILED" ) CALLBACK(${TEST}.run - "Run successful" "Running the test failed with the following error message" + "Run successful" "RUN FAILED" ) CALLBACK(${TEST}.diff - "Diff successful" "Diff failed:" + "Diff successful" "DIFF FAILED" ) -- 2.39.5