diff options
author | Jim Meyering <jim@meyering.net> | 2002-10-11 20:03:44 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-10-11 20:03:44 +0000 |
commit | fb8af4b59f9b5f7c858bf8449555d3199afcd199 (patch) | |
tree | 6ec12c6168473d719024d94377ebf600f906565e | |
parent | 818addef644be4b01e16459c86fb731e71b5aa0d (diff) | |
download | coreutils-fb8af4b59f9b5f7c858bf8449555d3199afcd199.tar.xz |
*** empty log message ***
-rwxr-xr-x | tests/du/deref | 4 |
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 |