From: Paul Eggert Date: Wed, 22 Jun 2005 07:38:06 +0000 (+0000) Subject: * tests/cp/cp-parents: Use chmod to work around some hosts with X-Git-Tag: CPPI-1_12~540 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d1140874687a7d0f150a0789979234c33c7a1ef6;p=thirdparty%2Fcoreutils.git * tests/cp/cp-parents: Use chmod to work around some hosts with ACL problems. --- diff --git a/ChangeLog b/ChangeLog index d78b865445..8e9e6df575 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,12 @@ -2005-06-21 Jim Meyering +2005-06-22 Paul Eggert * Version 5.3.1. + * tests/cp/cp-parents: Use chmod to work around some hosts with + ACL problems. Problem reported by Kevin Mudrick. + +2005-06-21 Jim Meyering + * tests/du/deref-args: Use --apparent-size to avoid the vagaries of counting blocks. Kevin Mudrick reported that this test would fail on an nfs-mounted directory where attribute-caching is diff --git a/tests/cp/cp-parents b/tests/cp/cp-parents index 8f5182213b..35b2c023a5 100755 --- a/tests/cp/cp-parents +++ b/tests/cp/cp-parents @@ -31,6 +31,9 @@ cd $tmp || framework_failure=1 mkdir foo bar || framework_failure=1 mkdir -p a/b/c d e || framework_failure=1 +# Systems with ACLs might need this, if ACLs override umask. +chmod -R 755 a d e || framework_failure=1 + if test $framework_failure = 1; then echo 'failure in testing framework' exit 1