diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-18 20:13:51 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-18 20:13:51 +0000 |
commit | 90d7ba487b78145466d98a94d2e171b30f5ee6a7 (patch) | |
tree | e5e7bf835d2d1bc21a84e2da4234c9a7bcfec825 | |
parent | dc0c6abb4831ca4f92936b3f2d60d8c6cf65c6f1 (diff) | |
download | perl-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-x | t/op/stat.t | 2 |
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' ); |