From: Jim Meyering Date: Thu, 3 Feb 2000 16:46:16 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: SH-UTILS-2_0f~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47fe4e2b81d1eaeb07faf5bf5692d39a5e2239f9;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/tests/mv/dir-file b/tests/mv/dir-file index 2ed2b71b64..c51448a550 100755 --- a/tests/mv/dir-file +++ b/tests/mv/dir-file @@ -21,8 +21,10 @@ if test $framework_failure = 1; then exit 1 fi +fail=0 + # These should both fail, but until fileutils-4.0q only the second one did. -mv dir file && fail=1 -mv file dir && fail=1 +mv dir file > /dev/null 2>&1 && fail=1 +mv file dir > /dev/null 2>&1 && fail=1 exit $fail