Change 31666 by [EMAIL PROTECTED] on 2007/07/29 18:13:46

        Oops, 31665 was empty.

Affected files ...

... //depot/perl/t/op/stat.t#92 edit

Differences ...

==== //depot/perl/t/op/stat.t#92 (xtext) ====
Index: perl/t/op/stat.t
--- perl/t/op/stat.t#91~31665~  2007-07-29 07:48:20.000000000 -0700
+++ perl/t/op/stat.t    2007-07-29 11:13:46.000000000 -0700
@@ -50,9 +50,10 @@
 
 my($nlink, $mtime, $ctime) = (stat(FOO))[$NLINK, $MTIME, $CTIME];
 
-#VMS Fix-me: nlink should work on VMS if applicable link support configured.
+#nlink should if link support configured in Perl.
 SKIP: {
-    skip "No link count", 1 if $Is_VMS;
+    skip "No link count - Hard link support not built in.", 1
+       unless $Config{d_link};
 
     is($nlink, 1, 'nlink on regular file');
 }
End of Patch.

Reply via email to