diff options
author | Jim Meyering <jim@meyering.net> | 2001-12-15 09:28:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-12-15 09:28:50 +0000 |
commit | ae66a6b2b0f0e013828617a1de3c72535a45e19d (patch) | |
tree | 4bac1c712782ea0fe96440d8f04a648147462061 /tests/touch | |
parent | 686562b5a7cea3a883f91e225b360c232dde8f3f (diff) | |
download | coreutils-ae66a6b2b0f0e013828617a1de3c72535a45e19d.tar.xz |
Also accept SunOS4's `Not owner' diagnostic.
Diffstat (limited to 'tests/touch')
-rwxr-xr-x | tests/touch/fail-diag | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/touch/fail-diag b/tests/touch/fail-diag index f1fd037b6..6e2b49a16 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 |