From: Timo Heister Date: Fri, 7 Sep 2012 21:42:43 +0000 (+0000) Subject: make diffs not ignore whitespace for all tests. X-Git-Tag: v8.0.0~2159 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66393dfcd3d5f9b1996b826f898b5192f0664588;p=dealii.git make diffs not ignore whitespace for all tests. git-svn-id: https://svn.dealii.org/trunk@26251 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 749b0c0c8c..9c48628b70 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -121,9 +121,9 @@ endif if test -f $$testname/cmp/$$i ; then \ cmpfile_found=yes ; \ if test "x$(verbose)" = "xon" ; then \ - cmd="diff $(DIFFOPT) -w $< $$testname/cmp/$$i" ; \ + cmd="diff $(DIFFOPT) $< $$testname/cmp/$$i" ; \ else \ - cmd="diff -w $< $$testname/cmp/$$i > /dev/null" ; \ + cmd="diff $< $$testname/cmp/$$i > /dev/null" ; \ fi ; \ if eval $$cmd ; then \ echo '=====OK============' $@ ; \ @@ -239,7 +239,7 @@ report+mail: @for i in $(PLATFORM-HIERARCHY) ; do \ testname=$(<:%/output=%) ; \ if test -f $$testname/cmp/$$i ; then \ - cmd="diff -w $< $$testname/cmp/$$i > /dev/null" ; \ + cmd="diff $< $$testname/cmp/$$i > /dev/null" ; \ if eval ! $$cmd ; then \ echo '=====Creating======' $$testname/cmp/$(PLATFORM) ; \ cp $$testname/output $$testname/cmp/$(PLATFORM); \