This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
b9d6bef
)
Close the tempfile in caller.t
author
Craig A. Berry
<craigberry@mac.com>
Mon, 2 Aug 2010 03:12:38 +0000
(22:12 -0500)
committer
Craig A. Berry
<craigberry@mac.com>
Mon, 2 Aug 2010 12:10:53 +0000
(07:10 -0500)
Otherwise it will be locked when trying to run it on VMS.
t/op/caller.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/caller.t
b/t/op/caller.t
index
40782be
..
c6d4f61
100644
(file)
--- a/
t/op/caller.t
+++ b/
t/op/caller.t
@@
-195,6
+195,7
@@
print scalar @DB::args;
# It shouldn't leak.
EOP
+ close $fh;
foreach (0, 1) {
my $got = runperl(progfile => $tmpfile, args => [$_]);