From: Jarkko Hietaniemi Date: Mon, 18 Mar 2002 22:18:37 +0000 (+0000) Subject: Close the file so it can be (a) removed (b) reopened. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=287f7c359e7675bc0e1c053ced085b6fd3435be9;p=p5sagit%2Fp5-mst-13.2.git Close the file so it can be (a) removed (b) reopened. p4raw-id: //depot/perl@15309 --- diff --git a/ext/B/t/xref.t b/ext/B/t/xref.t index 10f868a..8b14355 100644 --- a/ext/B/t/xref.t +++ b/ext/B/t/xref.t @@ -94,6 +94,7 @@ is( ); END { + close XREF; 1 while unlink $file; }