diff options
Diffstat (limited to 'testsuite/testing.sh')
-rwxr-xr-x | testsuite/testing.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/testing.sh b/testsuite/testing.sh index d516f72..0925d09 100755 --- a/testsuite/testing.sh +++ b/testsuite/testing.sh @@ -48,13 +48,13 @@ function testing() if [ $? -ne 0 ] then FAILCOUNT=$[$FAILCOUNT+1] - echo FAIL:"$1" + echo "FAIL: $1" if [ $verbose ] then diff -u expected actual fi else - echo PASS:"$1" + echo "PASS: $1" fi rm -f input expected actual |