From 3546c8c355dce3115e28155a342e40604a5da509 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Sat, 29 Aug 2020 23:25:24 +0200 Subject: [PATCH] chore: always show test diff --- tests/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.sh b/tests/common.sh index 2aaf6c13bd..f3f56fc424 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -40,7 +40,7 @@ function exec_check { function diff_produced { if test -f "$f.expected.out"; then - if $DIFF -u -I "executing external script" "$f.expected.out" "$f.produced.out"; then + if $DIFF -au -I "executing external script" "$f.expected.out" "$f.produced.out"; then exit 0 else echo "ERROR: file $f.produced.out does not match $f.expected.out"