aboutsummaryrefslogtreecommitdiff
path: root/scripts/runtest.sh
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-11-28 16:52:06 -0600
committerRob Landley <rob@landley.net>2014-11-28 16:52:06 -0600
commitfd49375b9a150bc908fccc9912fdb92e289398e1 (patch)
treeabe3d76422cdcac99b7424db30cc375085f4c7c7 /scripts/runtest.sh
parent6d33f3a8be75aadfc9fd452ed67964920e451b14 (diff)
downloadtoybox-fd49375b9a150bc908fccc9912fdb92e289398e1.tar.gz
When running a test, the diff is always an ascii diff, not binary.
Diffstat (limited to 'scripts/runtest.sh')
-rw-r--r--scripts/runtest.sh2
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