summaryrefslogtreecommitdiff
path: root/tests/chgrp
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-05-30 10:45:45 +0200
committerJim Meyering <meyering@redhat.com>2008-05-30 10:45:45 +0200
commit72df741618e6c559db45dee1593f6874377f3bd6 (patch)
tree11ee199d50a930e9ea2f7bec2e4bc0dbc54569ad /tests/chgrp
parentfc6827e2bb0a8d4d70c7f399e3b2915654a0c926 (diff)
downloadcoreutils-72df741618e6c559db45dee1593f6874377f3bd6.tar.xz
tests: ignore known failure on all Darwin 8.x / Mac OS X v10.4.x
* tests/chgrp/basic: Update comment and host_triplet version test.
Diffstat (limited to 'tests/chgrp')
-rwxr-xr-xtests/chgrp/basic4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/chgrp/basic b/tests/chgrp/basic
index 03b8f21e4..cd7497871 100755
--- a/tests/chgrp/basic
+++ b/tests/chgrp/basic
@@ -96,7 +96,7 @@ sleep 1
chgrp $g1 f
# The following no-change chgrp command is supposed to update f's ctime,
-# but on OpenBSD and Darwin 7.9.0 and 8.8.0 (aka MacOS X 10.3.9 and 10.4),
+# but on OpenBSD and Darwin 7.9.0-8.11.1 (aka MacOS X 10.3.9 - 10.4.11)
# it appears to be a no-op for some file system types (at least NFS) so g's
# ctime is more recent. This is not a big deal;
# this test works fine when the files are on a local file system (/tmp).
@@ -105,7 +105,7 @@ test "`ls -C -c -t f g`" = 'f g' || \
{
case $host_triplet in
*openbsd*) echo ignoring known OpenBSD-specific chgrp failure 1>&2 ;;
- *darwin7.9.*|*darwin8.8.*)
+ *darwin7.9.*|*darwin8.*)
echo ignoring known MacOS X-specific chgrp failure 1>&2 ;;
*) echo $host_triplet: no-change chgrp failed to update ctime 1>&2;
fail=1 ;;