summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-23 14:02:14 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-23 14:02:14 +0000
commit78339b253ad40e37380df7c4908ee08ee1198ac6 (patch)
treeb7bf837b7ddc7e5a83863a666e367f9776c616a4 /t/io
parent94db450fa1d6b9af5be7111705500dd257eda45f (diff)
downloadperl-78339b253ad40e37380df7c4908ee08ee1198ac6.tar.gz
More Cygwin filesystem semantics.
p4raw-id: //depot/perl@10862
Diffstat (limited to 't/io')
-rwxr-xr-xt/io/fs.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/io/fs.t b/t/io/fs.t
index 091bd44fb0..2a14377d66 100755
--- a/t/io/fs.t
+++ b/t/io/fs.t
@@ -10,7 +10,7 @@ BEGIN {
use Config;
$Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'NetWare' or $^O eq 'dos' or
- $^O eq 'os2' or $^O eq 'mint');
+ $^O eq 'os2' or $^O eq 'mint' or $^O eq 'cygwin');
if (defined &Win32::IsWinNT && Win32::IsWinNT()) {
$Is_Dosish = '' if Win32::FsType() eq 'NTFS';
@@ -111,7 +111,7 @@ if ($foo == 1) {print "ok 16\n";} else {print "not ok 16 $foo\n";}
$blksize,$blocks) = stat('b');
if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) { print "ok 17 # skipped: bogus (stat)[1]\n"; }
elsif ($ino) {print "ok 17\n";} else {print "not ok 17\n";}
-if ($wd =~ m#$Config{'afsroot'}/# || $^O eq 'amigaos' || $^O eq 'dos' || $^O eq 'MSWin32' || $^O eq 'NetWare')
+if ($wd =~ m#$Config{'afsroot'}/# || $^O eq 'amigaos' || $^O eq 'dos' || $^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'cygwin')
{print "ok 18 # skipped: granularity of the filetime\n";}
elsif ($atime == 500000000 && $mtime == 500000000 + $delta)
{print "ok 18\n";}