From fbf3697d20aa697b257763c9a06509e250cbafd0 Mon Sep 17 00:00:00 2001 From: kanschat Date: Wed, 2 Aug 2006 19:22:53 +0000 Subject: [PATCH] make sure that tests failing because of full disks are not listed on the web page git-svn-id: https://svn.dealii.org/trunk@13577 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 1cbe87da6d..631aa567be 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -83,7 +83,7 @@ endif # the failed one. # # if, however, the flag `stop_on_error=on' was given, the -# check command fails whenever teh output differs from the +# check command fails whenever the output differs from the # precomputed file. # # as to finding which output file to compare with: we simply @@ -135,11 +135,13 @@ endif ############################################################ report: @for test in $(sort $(tests)) ; do \ + if (($(MAKE) $$test/output 2>&1) > /dev/null); then \ if (($(MAKE) $$test/OK stop_on_error=on 2>&1) > /dev/null); then \ echo `date -u +"%Y-%m-%d %H:%M"` " + $(WORKDIR)/$$test" ; \ else \ echo `date -u +"%Y-%m-%d %H:%M"` " 0 $(WORKDIR)/$$test" ; \ fi ; \ + fi ; \ done -- 2.39.5