diff options
author | Jim Meyering <meyering@redhat.com> | 2009-03-19 19:04:19 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-03-20 15:08:50 +0100 |
commit | 25bbb44dbb4d44b9718338aedeeae5c379596edb (patch) | |
tree | 6ce2a2b07143962317ac72de270d4b66e0d722ee | |
parent | 25507a54f7f1d8f6cd28802a413e23a0e91dbe67 (diff) | |
download | coreutils-25bbb44dbb4d44b9718338aedeeae5c379596edb.tar.xz |
tests: avoid spurious mkdir/selinux test failure on HP-UX 11.23
* tests/mkdir/selinux: Accept yet another diagnostic.
Reported by Matthew Woehlke.
-rwxr-xr-x | tests/mkdir/selinux | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/mkdir/selinux b/tests/mkdir/selinux index a81689a80..b8ab40472 100755 --- a/tests/mkdir/selinux +++ b/tests/mkdir/selinux @@ -1,7 +1,7 @@ #!/bin/sh # ensure that an invalid context doesn't cause a segfault -# Copyright (C) 2008 Free Software Foundation, Inc. +# Copyright (C) 2008-2009 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -44,6 +44,7 @@ for cmd_w_arg in 'mkdir dir' 'mknod b p' 'mkfifo f'; do # Some systems fail with ENOTSUP, EINVAL, ENOENT, or even # "Unknown system error", or "Function not implemented". # For AIX 5.3: "Unsupported attribute value" + # For HP-UX 11.23: Unknown error (252) sed \ -e 's/ Not supported$//' \ -e 's/ Invalid argument$//' \ @@ -51,6 +52,7 @@ for cmd_w_arg in 'mkdir dir' 'mknod b p' 'mkfifo f'; do -e 's/ Operation not supported$//' \ -e 's/ Function not implemented$//' \ -e 's/ Unsupported attribute value$//' \ + -e 's/ Unknown error .*$//' \ -e 's/ No such file or directory$//' out > k || fail=1 mv k out || fail=1 compare out exp || fail=1 |