From 894dc0414a56709798864f590e1fe4571cbd9e37 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Thu, 17 Jan 2002 14:31:21 +0000 Subject: [PATCH] .check renamed to .OK for easier typing git-svn-id: https://svn.dealii.org/trunk@5384 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.39.5