From: Gurusamy Sarathy Date: Fri, 26 Apr 2002 00:45:36 +0000 (+0000) Subject: MANIFEST is needlessly held open for entire duration of "make test" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=35d88760165be575724cd1a879799c58a79fe96e;p=p5sagit%2Fp5-mst-13.2.git MANIFEST is needlessly held open for entire duration of "make test" p4raw-id: //depot/perl@16174 --- diff --git a/t/TEST b/t/TEST index 7be22f1..5130423 100755 --- a/t/TEST +++ b/t/TEST @@ -89,6 +89,7 @@ unless (@ARGV) { } } } + close MANI; } else { warn "$0: cannot open $mani: $!\n"; } diff --git a/t/harness b/t/harness index 6153b23..53665f4 100644 --- a/t/harness +++ b/t/harness @@ -67,6 +67,7 @@ if (@ARGV) { push @tests, File::Spec->catfile($updir, $1); } } + close MANI; } else { warn "$0: cannot open $mani: $!\n"; }