test: do not ignore whitespace in diff

It doesn't look like we were relying on it much
This commit is contained in:
Sebastian Ullrich 2020-07-31 17:19:16 +02:00 committed by Leonardo de Moura
parent ebe1e6d181
commit c8b6020bb3
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ function exec_check {
function diff_produced {
if test -f "$f.expected.out"; then
if $DIFF -u --ignore-all-space -I "executing external script" "$f.expected.out" "$f.produced.out"; then
if $DIFF -u -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"

View file

@ -4,4 +4,4 @@
4 count: 420
5 count: 2202
6 count: 12886
7 count: 83648
7 count: 83648