diff options
author | Jim Meyering <jim@meyering.net> | 1997-07-04 19:12:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-07-04 19:12:25 +0000 |
commit | 581b1540f5a6cbc8d8a2590c09872527a8d1240b (patch) | |
tree | 2cd0dc0812bd1d57fedb8cc6c264970ffc4e5e56 /tests/join | |
parent | a7da25a2bbc09bb10bc6005ca4190a5db2da0869 (diff) | |
download | coreutils-581b1540f5a6cbc8d8a2590c09872527a8d1240b.tar.xz |
Redirect output of cmp to /dev/null.
Diffstat (limited to 'tests/join')
-rw-r--r-- | tests/join/mk-script.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/join/mk-script.pl b/tests/join/mk-script.pl index adfba98d2..d116cc0f2 100644 --- a/tests/join/mk-script.pl +++ b/tests/join/mk-script.pl @@ -312,7 +312,7 @@ if test \$code != $e_ret_code ; then \$echo "Test $t_name failed: $xx return code \$code differs from expected value $e_ret_code" 1>&2 errors=`expr \$errors + 1` else - cmp $out $exp_name + cmp $out $exp_name > /dev/null 2>&1 case \$? in 0) if test "\$VERBOSE" ; then \$echo "passed $t_name"; fi ;; 1) \$echo "Test $t_name failed: files $out and $exp_name differ" 1>&2; |