From: Jim Meyering Date: Mon, 1 Jul 2002 14:36:57 +0000 (+0000) Subject: Handle yet another different diagnostic. X-Git-Tag: FILEUTILS-4_1_10~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58c37faa5c7704574bf8b77687753c23b5a6663f;p=thirdparty%2Fcoreutils.git Handle yet another different diagnostic. --- diff --git a/tests/touch/fail-diag b/tests/touch/fail-diag index 6e2b49a16e..bf77caa5a0 100755 --- a/tests/touch/fail-diag +++ b/tests/touch/fail-diag @@ -33,19 +33,17 @@ touch / > out 2>&1 && fail=1 touch /no/such-dir >> out 2>&1 && fail=1 -cat > exp <<\EOF -touch: setting times of `/': Permission denied -touch: creating `/no/such-dir': No such file or directory +# On SunOS4, EPERM is `Not owner'. +# On some *BSD systems it's `Operation not permitted'. +for msg in 'Not owner' 'Operation not permitted' 'Permission denied'; do + cat > exp < exp2 <<\EOF -touch: setting times of `/': Not owner -touch: creating `/no/such-dir': No such file or directory -EOF - cmp out exp2 || fail=1 -} + cmp out exp > /dev/null 2>&1 && break + +done test $fail = 1 && diff out exp 2> /dev/null