diff options
author | Craig A. Berry <craigberry@mac.com> | 2010-08-01 22:12:38 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2010-08-02 07:10:53 -0500 |
commit | ade9cf977f7d471077ecd475f145b736b50e9b52 (patch) | |
tree | 2ea28be25dc3c125f3c5aa30db323e68c3226443 /t | |
parent | b9d6bef4b93a33f3590bca291e2bd2c859a88370 (diff) | |
download | perl-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.t | 1 |
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 => [$_]); |