commit | fd49375b9a150bc908fccc9912fdb92e289398e1 | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Fri Nov 28 16:52:06 2014 -0600 |
committer | Rob Landley <rob@landley.net> | Fri Nov 28 16:52:06 2014 -0600 |
tree | abe3d76422cdcac99b7424db30cc375085f4c7c7 | |
parent | 6d33f3a8be75aadfc9fd452ed67964920e451b14 [diff] [blame] |
When running a test, the diff is always an ascii diff, not binary.
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index ce4dedf..8da1089 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh
@@ -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