]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* tests/cp/cp-parents: Use chmod to work around some hosts with
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 22 Jun 2005 07:38:06 +0000 (07:38 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 22 Jun 2005 07:38:06 +0000 (07:38 +0000)
ACL problems.

ChangeLog
tests/cp/cp-parents

index d78b8654451b268f95012b654dc32bf7a961dd95..8e9e6df5752e138c61de5e9c39f1c3d90093600f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
-2005-06-21  Jim Meyering  <jim@meyering.net>
+2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
 
        * 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  <jim@meyering.net>
+
        * 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
index 8f5182213ba1b6c64139017b4e4e142b88d2ebec..35b2c023a5f6f8b16daaf31598834502576fa626 100755 (executable)
@@ -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