From 9a233da2ab5a645c880b980e1cab0abeb696b36b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 16 Nov 2005 09:29:32 +0000 Subject: Accommodate HPUX. It appears to fail with EACCES rather than EPERM. Reported by Peter O'Gorman here: http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/5766 --- tests/cp/fail-perm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/cp/fail-perm') diff --git a/tests/cp/fail-perm b/tests/cp/fail-perm index 218785a9f..5fa0332a4 100755 --- a/tests/cp/fail-perm +++ b/tests/cp/fail-perm @@ -45,9 +45,15 @@ cp: accessing `symlink': Permission denied EOF cp F symlink 2> out && fail=1 +# HPUX appears to fail with EACCES rather than EPERM. +# Transform their diagnostic +# ...: The file access permissions do not allow the specified action. +# to the expected one: +sed 's/: The file access permissions.*/: Permission denied/'o1;mv o1 out cmp out exp || { (diff -c out exp) 2> /dev/null; fail=1; } cp --target-directory=symlink F 2> out && fail=1 +sed 's/: The file access permissions.*/: Permission denied/'o1;mv o1 out cmp out exp || { (diff -c out exp) 2> /dev/null; fail=1; } chmod 700 D -- cgit v1.2.3-70-g09d2