diff options
-rw-r--r-- | scripts/runtest.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index 3a5b09c6..90d6299b 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -121,8 +121,7 @@ testing() # Catch segfaults [ $RETVAL -gt 128 ] && [ $RETVAL -lt 255 ] && echo "exited with signal (or returned $RETVAL)" >> actual - - DIFF="$(diff -au${NOSPACE:+b} expected actual)" + DIFF="$(diff -au${NOSPACE:+w} expected actual)" if [ ! -z "$DIFF" ] then FAILCOUNT=$(($FAILCOUNT+1)) |