From: Jim Meyering Date: Sun, 28 May 2006 09:32:54 +0000 (+0000) Subject: AIX 4.3.3 gives a different diagnostic. X-Git-Tag: v6.0~346 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8542aa662209dab454d45ddb320d100ef1a0205d;p=thirdparty%2Fcoreutils.git AIX 4.3.3 gives a different diagnostic. Recognize it, too. Reported by Ralf Wildenhues, in http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00192.html --- diff --git a/tests/rm/inaccessible b/tests/rm/inaccessible index 843e44e3a8..32c10f4e9e 100755 --- a/tests/rm/inaccessible +++ b/tests/rm/inaccessible @@ -37,6 +37,12 @@ cat <<\EOF > exp || fail=1 rm: cannot remove `rel': Permission denied EOF +# AIX 4.3.3 fails with a different diagnostic. +# 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 || fail=1 test $fail = 1 && diff out exp 2> /dev/null