From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
Date: Sat, 18 Feb 2006 20:13:51 +0000 (+0000)
Subject: As Anno Siegel points out, mtime/ctime test should be skipped
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=90d7ba487b78145466d98a94d2e171b30f5ee6a7;p=p5sagit%2Fp5-mst-13.2.git

As Anno Siegel points out, mtime/ctime test should be skipped
on OS X on HFS+.

p4raw-id: //depot/perl@27223
---

diff --git a/t/op/stat.t b/t/op/stat.t
index b1f7a15..c2d3731 100755
--- a/t/op/stat.t
+++ b/t/op/stat.t
@@ -59,7 +59,7 @@ SKIP: {
 
 SKIP: {
   skip "mtime and ctime not reliable", 2
-    if $Is_MSWin32 or $Is_NetWare or $Is_Cygwin or $Is_Dos or $Is_MacOS;
+    if $Is_MSWin32 or $Is_NetWare or $Is_Cygwin or $Is_Dos or $Is_MacOS or $Is_Darwin;
 
   ok( $mtime,           'mtime' );
   is( $mtime, $ctime,   'mtime == ctime' );