From fd49375b9a150bc908fccc9912fdb92e289398e1 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 28 Nov 2014 16:52:06 -0600 Subject: When running a test, the diff is always an ascii diff, not binary. --- scripts/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/runtest.sh') 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 -- cgit v1.2.3