summaryrefslogtreecommitdiff
path: root/tests/du/deref
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-10-11 20:03:44 +0000
committerJim Meyering <jim@meyering.net>2002-10-11 20:03:44 +0000
commitfb8af4b59f9b5f7c858bf8449555d3199afcd199 (patch)
tree6ec12c6168473d719024d94377ebf600f906565e /tests/du/deref
parent818addef644be4b01e16459c86fb731e71b5aa0d (diff)
downloadcoreutils-fb8af4b59f9b5f7c858bf8449555d3199afcd199.tar.xz
*** empty log message ***
Diffstat (limited to 'tests/du/deref')
-rwxr-xr-xtests/du/deref4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/du/deref b/tests/du/deref
index e10c502a6..efa0caab0 100755
--- a/tests/du/deref
+++ b/tests/du/deref
@@ -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