test: do not ignore whitespace in diff
It doesn't look like we were relying on it much
This commit is contained in:
parent
ebe1e6d181
commit
c8b6020bb3
2 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@
|
|||
4 count: 420
|
||||
5 count: 2202
|
||||
6 count: 12886
|
||||
7 count: 83648
|
||||
7 count: 83648
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue