diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-09 17:57:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-09 17:57:44 +0000 |
commit | 7d38e28d2fcc9e59082bf7a762ac93311f7dac1c (patch) | |
tree | 8b5ab5c647e43ef86ea02ba07b262ab2641055c9 /t/op | |
parent | 7b717bbdd56660beb2b3a65dc8b0144ca50b89e0 (diff) | |
download | perl-7d38e28d2fcc9e59082bf7a762ac93311f7dac1c.tar.gz |
Also WinME is LoseLink.
p4raw-id: //depot/perl@13554
Diffstat (limited to 't/op')
-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 ab68e53ff2..79f9e29d1a 100755 --- a/t/op/stat.t +++ b/t/op/stat.t @@ -81,7 +81,7 @@ SKIP: { SKIP: { skip "No link count", 1 if $Config{dont_use_nlink}; skip "Cygwin9X fakes hard links by copying", 1 - if $Config{myuname} =~ /^cygwin_9\d\b/; + if $Config{myuname} =~ /^cygwin_(?:9\d|me)\b/i; is($nlink, 2, 'Link count on hard linked file' ); } |