chore: always show test diff

This commit is contained in:
Sebastian Ullrich 2020-08-29 23:25:24 +02:00 committed by Leonardo de Moura
parent cc909e20e1
commit 3546c8c355

View file

@ -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"