summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2010-08-01 22:12:38 -0500
committerCraig A. Berry <craigberry@mac.com>2010-08-02 07:10:53 -0500
commitade9cf977f7d471077ecd475f145b736b50e9b52 (patch)
tree2ea28be25dc3c125f3c5aa30db323e68c3226443 /t
parentb9d6bef4b93a33f3590bca291e2bd2c859a88370 (diff)
downloadperl-ade9cf977f7d471077ecd475f145b736b50e9b52.tar.gz
Close the tempfile in caller.t
Otherwise it will be locked when trying to run it on VMS.
Diffstat (limited to 't')
-rw-r--r--t/op/caller.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/op/caller.t b/t/op/caller.t
index 40782bee70..c6d4f61250 100644
--- 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 => [$_]);