From 66393dfcd3d5f9b1996b826f898b5192f0664588 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 7 Sep 2012 21:42:43 +0000 Subject: [PATCH] make diffs not ignore whitespace for all tests. git-svn-id: https://svn.dealii.org/trunk@26251 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 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); \ -- 2.39.5