diff options
author | Stas Bekman <stas@stason.org> | 2002-03-28 18:13:45 +0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-28 01:20:31 +0000 |
commit | 29d6d7d54cac14b9377112773969cf75bbe7780f (patch) | |
tree | 18c5ddf2854260f7c74431da13698ac37b4ad8e3 /lib/Pod | |
parent | 3dca81fbfabd59d447e62826c453572aa4a961d2 (diff) | |
download | perl-29d6d7d54cac14b9377112773969cf75bbe7780f.tar.gz |
Re: Smoke 15526 /pro/3gl/CPAN/perl-current
Message-ID: <3CA27C59.4020209@stason.org>
Temp file cleanup.
p4raw-id: //depot/perl@15567
Diffstat (limited to 'lib/Pod')
-rw-r--r-- | lib/Pod/t/pod2html-lib.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Pod/t/pod2html-lib.pl b/lib/Pod/t/pod2html-lib.pl index c3d96aeefb..3a83bd14d8 100644 --- a/lib/Pod/t/pod2html-lib.pl +++ b/lib/Pod/t/pod2html-lib.pl @@ -33,9 +33,12 @@ sub convert_n_test { open my $in, $outfile or die "cannot open $outfile: $!"; my $result = <$in>; close $in; + 1 while unlink $outfile; is($expect, $result, $testname); - + # pod2html creates these + 1 while unlink "pod2htmd.x~~"; + 1 while unlink "pod2htmi.x~~"; } 1; |