aboutsummaryrefslogtreecommitdiff
path: root/testsuite/testing.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/testing.sh')
-rwxr-xr-xtestsuite/testing.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/testing.sh b/testsuite/testing.sh
index d516f722a..0925d090d 100755
--- a/testsuite/testing.sh
+++ b/testsuite/testing.sh
@@ -48,13 +48,13 @@ function testing()
48 if [ $? -ne 0 ] 48 if [ $? -ne 0 ]
49 then 49 then
50 FAILCOUNT=$[$FAILCOUNT+1] 50 FAILCOUNT=$[$FAILCOUNT+1]
51 echo FAIL:"$1" 51 echo "FAIL: $1"
52 if [ $verbose ] 52 if [ $verbose ]
53 then 53 then
54 diff -u expected actual 54 diff -u expected actual
55 fi 55 fi
56 else 56 else
57 echo PASS:"$1" 57 echo "PASS: $1"
58 fi 58 fi
59 rm -f input expected actual 59 rm -f input expected actual
60 60