changeset 1580:071d152c356d draft

When running a test, the diff is always an ascii diff, not binary.
author Rob Landley <rob@landley.net>
date Fri, 28 Nov 2014 16:52:06 -0600
parents 302f271e8d5d
children 22a910100df7
files scripts/runtest.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/runtest.sh	Fri Nov 28 16:51:32 2014 -0600
+++ b/scripts/runtest.sh	Fri Nov 28 16:52:06 2014 -0600
@@ -95,7 +95,7 @@
     then
       [ ! -z "$4" ] && echo "echo -ne \"$4\" > input"
       echo "echo -ne '$5' | $2"
-      diff -u expected actual
+      diff -au expected actual
       [ "$VERBOSE" == fail ] && exit 1
     fi
   else