diff options
Diffstat (limited to 'tests/misc/cat-proc')
-rwxr-xr-x | tests/misc/cat-proc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/cat-proc b/tests/misc/cat-proc index 83c173513..2372980c3 100755 --- a/tests/misc/cat-proc +++ b/tests/misc/cat-proc @@ -33,6 +33,6 @@ test -f $f \ cat -E $f | sed 's/[0-9][0-9]*/D/g' | tr -d '$' > out || fail=1 cat $f | sed 's/[0-9][0-9]*/D/g' | tr -d '$' > exp || fail=1 -compare out exp || fail=1 +compare exp out || fail=1 Exit $fail |