diff options
author | Rob Landley <rob@landley.net> | 2014-11-28 16:52:06 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-11-28 16:52:06 -0600 |
commit | fd49375b9a150bc908fccc9912fdb92e289398e1 (patch) | |
tree | abe3d76422cdcac99b7424db30cc375085f4c7c7 /scripts | |
parent | 6d33f3a8be75aadfc9fd452ed67964920e451b14 (diff) | |
download | toybox-fd49375b9a150bc908fccc9912fdb92e289398e1.tar.gz |
When running a test, the diff is always an ascii diff, not binary.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/runtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index ce4dedf9..8da1089e 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -95,7 +95,7 @@ testing() 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 |