Oops, 31665 was empty.
Craig A. Berry [Sun, 29 Jul 2007 18:13:46 +0000 (18:13 +0000)]
p4raw-id: //depot/perl@31666

t/op/stat.t

index f00bd28..dbddaef 100755 (executable)
@@ -50,9 +50,10 @@ open(FOO, ">$tmpfile") || DIE("Can't open temp test file: $!");
 
 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');
 }