From: Michael G. Schwern Date: Sat, 8 Dec 2001 15:06:16 +0000 (-0500) Subject: Cygwin98 fakes hard links X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f672c0274dfe1442442c80713ab62885cdad273b;p=p5sagit%2Fp5-mst-13.2.git Cygwin98 fakes hard links Message-ID: <20011208200616.GA8915@blackrider> p4raw-id: //depot/perl@13547 --- diff --git a/t/op/stat.t b/t/op/stat.t index 4f16b70..ab68e53 100755 --- a/t/op/stat.t +++ b/t/op/stat.t @@ -80,6 +80,9 @@ 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/; + is($nlink, 2, 'Link count on hard linked file' ); }