mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-13 23:36:10 +02:00
* src/remove.c (remove_cwd_entries): If we can't open a directory, and the failure is not being ignored, try to remove the directory with rmdir (aka unlinkat-with-AT_REMOVEDIR), in case it's empty. Problem report and test case from Paul Eggert in <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7425>. * tests/rm/empty-inacc: New test, for the above.
41 lines
954 B
Bash
Executable File
41 lines
954 B
Bash
Executable File
#!/bin/sh
|
|
# Ensure that rm -rf removes an empty-and-inaccessible directory.
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
rm --version
|
|
fi
|
|
|
|
PRIV_CHECK_ARG=require-non-root . $srcdir/../priv-check
|
|
|
|
pwd=`pwd`
|
|
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
|
|
trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
|
|
trap '(exit $?); exit $?' 1 2 13 15
|
|
|
|
framework_failure=0
|
|
mkdir -p $tmp || framework_failure=1
|
|
cd $tmp || framework_failure=1
|
|
mkdir -m0 inacc || framework_failure=1
|
|
|
|
# Also exercise the different code path that's taken for a directory
|
|
# that is empty (hence removable) and unreadable.
|
|
mkdir -m a-r -p a/unreadable
|
|
|
|
if test $framework_failure = 1; then
|
|
echo "$0: failure in testing framework" 1>&2
|
|
(exit 1); exit 1
|
|
fi
|
|
|
|
fail=0
|
|
|
|
# This would fail for e.g., coreutils-5.93.
|
|
rm -rf inacc || fail=1
|
|
test -d inacc && fail=1
|
|
|
|
# This would fail for e.g., coreutils-5.97.
|
|
rm -rf a || fail=1
|
|
test -d a && fail=1
|
|
|
|
(exit $fail); exit $fail
|