summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-02-18 20:13:51 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-02-18 20:13:51 +0000
commit90d7ba487b78145466d98a94d2e171b30f5ee6a7 (patch)
treee5e7bf835d2d1bc21a84e2da4234c9a7bcfec825
parentdc0c6abb4831ca4f92936b3f2d60d8c6cf65c6f1 (diff)
downloadperl-90d7ba487b78145466d98a94d2e171b30f5ee6a7.tar.gz
As Anno Siegel points out, mtime/ctime test should be skipped
on OS X on HFS+. p4raw-id: //depot/perl@27223
-rwxr-xr-xt/op/stat.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/stat.t b/t/op/stat.t
index b1f7a150ef..c2d373145e 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' );