From: Jim Meyering Date: Fri, 4 May 2007 10:01:43 +0000 (+0200) Subject: Avoid failure of root-only test when run with a restrictive umask. X-Git-Tag: v6.9.89~298 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3affac54ed4b0e2c3a2e0d350403b92a26a961b9;p=thirdparty%2Fcoreutils.git Avoid failure of root-only test when run with a restrictive umask. * tests/rm/no-give-up: Ensure that non-root can access "d/" through root-owned ".". Reported by AIDA Shinra. --- diff --git a/ChangeLog b/ChangeLog index 5efd94b2fd..bd1b30445b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-05-04 Jim Meyering + Avoid failure of root-only test when run with a restrictive umask. + * tests/rm/no-give-up: Ensure that non-root can access "d/" through + root-owned ".". Reported by AIDA Shinra. + tr -c: don't abort when translating with S2 larger than complement of S1 * src/tr.c (main): Remove invalid assertion triggered by e.g., tr -c a '[b*256]'. There's nothing wrong with having Set2 larger diff --git a/tests/rm/no-give-up b/tests/rm/no-give-up index dbd99eb149..d90e9e6dc6 100755 --- a/tests/rm/no-give-up +++ b/tests/rm/no-give-up @@ -34,10 +34,12 @@ trap '(exit $?); exit $?' 1 2 13 15 framework_failure=0 mkdir -p $tmp || framework_failure=1 cd $tmp || framework_failure=1 -mkdir d -touch d/f -chown -R $NON_ROOT_USERNAME d -chmod go= . +mkdir d || framework_failure=1 +touch d/f || framework_failure=1 +chown -R $NON_ROOT_USERNAME d || framework_failure=1 + +# Ensure that non-root can access files in root-owned ".". +chmod go=x . || framework_failure=1 if test $framework_failure = 1; then echo "$0: failure in testing framework" 1>&2