diff options
Diffstat (limited to 'tests/rmdir')
-rwxr-xr-x | tests/rmdir/fail-perm | 4 | ||||
-rwxr-xr-x | tests/rmdir/ignore | 2 | ||||
-rwxr-xr-x | tests/rmdir/t-slash | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/rmdir/fail-perm b/tests/rmdir/fail-perm index 9af747b85..8d012c048 100755 --- a/tests/rmdir/fail-perm +++ b/tests/rmdir/fail-perm @@ -20,8 +20,8 @@ . "${srcdir=.}/init.sh"; path_prepend_ ../src print_ver_ rmdir -mkdir d d/e d/e/f || framework_failure -chmod a-w d || framework_failure +mkdir d d/e d/e/f || framework_failure_ +chmod a-w d || framework_failure_ # This rmdir command outputs two diagnostics. diff --git a/tests/rmdir/ignore b/tests/rmdir/ignore index b6faaeadd..c8db2243c 100755 --- a/tests/rmdir/ignore +++ b/tests/rmdir/ignore @@ -20,7 +20,7 @@ print_ver_ rmdir cwd=`pwd` -mkdir -p "$cwd/a/b/c" "$cwd/a/x" || framework_failure +mkdir -p "$cwd/a/b/c" "$cwd/a/x" || framework_failure_ rmdir -p --ignore-fail-on-non-empty "$cwd/a/b/c" || fail=1 # $cwd/a/x should remain diff --git a/tests/rmdir/t-slash b/tests/rmdir/t-slash index e7785c372..902743381 100755 --- a/tests/rmdir/t-slash +++ b/tests/rmdir/t-slash @@ -19,7 +19,7 @@ . "${srcdir=.}/init.sh"; path_prepend_ ../src print_ver_ rmdir -mkdir dir || framework_failure +mkdir dir || framework_failure_ # Prior to coreutils-4.5.2, this would fail with the following: |