From: Jim Meyering Date: Sat, 15 Dec 2001 09:28:50 +0000 (+0000) Subject: Also accept SunOS4's `Not owner' diagnostic. X-Git-Tag: FILEUTILS-4_1_4~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae66a6b2b0f0e013828617a1de3c72535a45e19d;p=thirdparty%2Fcoreutils.git Also accept SunOS4's `Not owner' diagnostic. --- diff --git a/tests/touch/fail-diag b/tests/touch/fail-diag index f1fd037b69..6e2b49a16e 100755 --- a/tests/touch/fail-diag +++ b/tests/touch/fail-diag @@ -38,7 +38,15 @@ touch: setting times of `/': Permission denied touch: creating `/no/such-dir': No such file or directory EOF -cmp out exp || fail=1 +cmp out exp || { + # On SunOS4, EPERM is `Not owner' + cat > exp2 <<\EOF +touch: setting times of `/': Not owner +touch: creating `/no/such-dir': No such file or directory +EOF + cmp out exp2 || fail=1 +} + test $fail = 1 && diff out exp 2> /dev/null (exit $fail); exit