From: Guido Kanschat Date: Thu, 17 Jan 2002 14:31:21 +0000 (+0000) Subject: .check renamed to .OK for easier typing X-Git-Tag: v8.0.0~18451 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=894dc0414a56709798864f590e1fe4571cbd9e37;p=dealii.git .check renamed to .OK for easier typing git-svn-id: https://svn.dealii.org/trunk@5384 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index e86a954bfe..887c86abb3 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -67,7 +67,7 @@ endif ############################################################ -%.check : %.output +%.OK : %.output @echo '=====Checking======' $< @perl -pi $(normalize) $< @if test "x$(verbose)" = "xon" ; then \ @@ -100,7 +100,7 @@ endif report: @today=`date -u +"%Y-%m-%d %H:%M"` ; \ for test in $(sort $(tests)) ; do \ - if (($(MAKE) $$test.check stop_on_error=on 2>&1) > /dev/null); then \ + if (($(MAKE) $$test.OK stop_on_error=on 2>&1) > /dev/null); then \ echo $$today + $$test ; \ else \ echo $$today - $$test ; \ @@ -114,7 +114,7 @@ report: # perform a check. Do it in alphabetical order for better # overview ############################################################ -run-tests: $(tests:%=%.check) +run-tests: $(tests:%=%.OK)