]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Fri, 11 Oct 2002 20:03:44 +0000 (20:03 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 11 Oct 2002 20:03:44 +0000 (20:03 +0000)
tests/du/deref

index e10c502a6e49cd117123835ccf9ad8c9ede1608f..efa0caab0e4c261ee987a65817cf02214ee7ff0c 100755 (executable)
@@ -27,6 +27,8 @@ fi
 
 fail=0
 
-du -sD A B || fail=1
+# This used to fail with the following diagnostic:
+# du: `B': No such file or directory
+du -sD A B > /dev/null 2>&1 || fail=1
 
 (exit $fail); exit $fail