diff options
author | Jim Meyering <jim@meyering.net> | 1999-11-22 11:23:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-11-22 11:23:08 +0000 |
commit | c401c7f12c4181689d0a768f12b5cb3e299a4b1a (patch) | |
tree | 1238632253e6d02feeed5500e207b95e14ae8525 /tests | |
parent | 5a7847d20fe615a4141b757ae05dc98b4eaf67c9 (diff) | |
download | coreutils-c401c7f12c4181689d0a768f12b5cb3e299a4b1a.tar.xz |
*** empty log message ***
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/rmdir/ignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/rmdir/ignore b/tests/rmdir/ignore index 645f46582..b94c0a65d 100755 --- a/tests/rmdir/ignore +++ b/tests/rmdir/ignore @@ -20,7 +20,10 @@ fi fail=0 rmdir -p --ignore-fail-on-non-empty $tmp/a/b || fail=1 +# $tmp/x should remain test -d $tmp/x || fail=1 +# $tmp/{a,b} should be gone +test -d $tmp/a && fail=1 test -d $tmp/b && fail=1 exit $fail |