From: Jim Meyering Date: Sat, 12 Apr 2008 11:14:29 +0000 (+0200) Subject: tests: Accommodate a different errno value on OSF/1 4.0F. X-Git-Tag: v6.11~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=512c906ca6c3405adfaa91bc29cfaf4798b5c88c;p=thirdparty%2Fcoreutils.git tests: Accommodate a different errno value on OSF/1 4.0F. * tests/mkdir/selinux: Also handle "Function not implemented". --- diff --git a/tests/mkdir/selinux b/tests/mkdir/selinux index 1fa44aee80..e84b77663d 100755 --- a/tests/mkdir/selinux +++ b/tests/mkdir/selinux @@ -38,11 +38,12 @@ for cmd_w_arg in 'mkdir dir' 'mknod b p' 'mkfifo f'; do echo "$cmd: $msg" > exp || fail=1 # Some systems fail with ENOTSUP, EINVAL, ENOENT, or even - # "Unknown system error". + # "Unknown system error", or "Function not implemented". sed \ -e 's/ Invalid argument$//' \ -e 's/ Unknown system error$//' \ -e 's/ Operation not supported$//' \ + -e 's/ Function not implemented$//' \ -e 's/ No such file or directory$//' out > k || fail=1 mv k out || fail=1 compare out exp || fail=1