X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop%2Flfs.t;h=f463b1b7b350f591ef90d06ff448be19e22ab3bc;hb=b3a3b3a1da8f5142edf3e194532b08316f895282;hp=e62cdbf9000473a96a0f14341b0297449350ba31;hpb=b0d0c53930669dca23928a6d1a7ae6e9f2bd61d8;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op/lfs.t b/t/op/lfs.t index e62cdbf..f463b1b 100644 --- a/t/op/lfs.t +++ b/t/op/lfs.t @@ -269,10 +269,10 @@ bye(); # does the necessary cleanup END { # unlink may fail if applied directly to a large file - open(BIG, ">big"); - print BIG "x"; + # be paranoid about leaving 5 gig files lying around + open(BIG, ">big"); # truncate close(BIG); - unlink "big"; # be paranoid about leaving 5 gig files lying around + 1 while unlink "big"; # standard portable idiom } # eof