summaryrefslogtreecommitdiff
path: root/tests/cut
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-07-04 19:12:25 +0000
committerJim Meyering <jim@meyering.net>1997-07-04 19:12:25 +0000
commit581b1540f5a6cbc8d8a2590c09872527a8d1240b (patch)
tree2cd0dc0812bd1d57fedb8cc6c264970ffc4e5e56 /tests/cut
parenta7da25a2bbc09bb10bc6005ca4190a5db2da0869 (diff)
downloadcoreutils-581b1540f5a6cbc8d8a2590c09872527a8d1240b.tar.xz
Redirect output of cmp to /dev/null.
Diffstat (limited to 'tests/cut')
-rw-r--r--tests/cut/mk-script.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cut/mk-script.pl b/tests/cut/mk-script.pl
index adfba98d2..d116cc0f2 100644
--- a/tests/cut/mk-script.pl
+++ b/tests/cut/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;