[perl #18065] LFS related bug in perl-5.8.0 testsuite
david@dhaller.de [Wed, 23 Oct 2002 18:42:51 +0000 (18:42 +0000)]
From: "david@dhaller.de (via RT)" <perlbug@perl.org>
Message-Id: <rt-18065-40384.14.044473925414@bugs6.perl.org>

p4raw-id: //depot/perl@18122

ext/Fcntl/t/syslfs.t
t/op/lfs.t

index 8d9769f..2dcaf43 100644 (file)
@@ -261,7 +261,11 @@ explain() if $fail;
 bye(); # does the necessary cleanup
 
 END {
-   unlink "big"; # be paranoid about leaving 5 gig files lying around
+    # unlink may fail if applied directly to a large file
+    open(BIG, ">big");
+    print BIG "x";
+    close(BIG);
+    unlink "big"; # be paranoid about leaving 5 gig files lying around
 }
 
 # eof
index 8be24f4..e62cdbf 100644 (file)
@@ -268,7 +268,11 @@ explain() if $fail;
 bye(); # does the necessary cleanup
 
 END {
-   unlink "big"; # be paranoid about leaving 5 gig files lying around
+    # unlink may fail if applied directly to a large file
+    open(BIG, ">big");
+    print BIG "x";
+    close(BIG);
+    unlink "big"; # be paranoid about leaving 5 gig files lying around
 }
 
 # eof