From 4e7ee149460a1e80f981e3148f5aa709e27ebacb Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Sun, 23 Jan 2005 08:23:17 -0600 Subject: [PATCH] assorted tempfile clean-up in the test suite From: "Craig A. Berry" Message-ID: <41F407B5.7020106@mac.com> p4raw-id: //depot/perl@23874 --- lib/Test/Simple/t/reset.t | 2 +- t/io/fs.t | 2 +- t/io/tell.t | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Test/Simple/t/reset.t b/lib/Test/Simple/t/reset.t index bc1546b..320fd86 100644 --- a/lib/Test/Simple/t/reset.t +++ b/lib/Test/Simple/t/reset.t @@ -27,7 +27,7 @@ my $tmpfile = 'foo.tmp'; $tb->output($tmpfile); $tb->failure_output($tmpfile); $tb->todo_output($tmpfile); -END { unlink $tmpfile } +END { 1 while unlink $tmpfile } # This won't print since we just sent output off to oblivion. $tb->ok(0, "And a failure for fun"); diff --git a/t/io/fs.t b/t/io/fs.t index eb305a9..30423f1 100755 --- a/t/io/fs.t +++ b/t/io/fs.t @@ -373,4 +373,4 @@ if ($^O eq 'VMS') { ok(-d 'tmp1', "rename on directories working"); # need to remove 'tmp' if rename() in test 28 failed! -END { rmdir 'tmp1'; rmdir 'tmp'; unlink "Iofs.tmp"; } +END { rmdir 'tmp1'; rmdir 'tmp'; 1 while unlink "Iofs.tmp"; } diff --git a/t/io/tell.t b/t/io/tell.t index 1e1f661..dcb4ee9 100755 --- a/t/io/tell.t +++ b/t/io/tell.t @@ -100,7 +100,7 @@ if (tell(ether) == -1) { print "ok 23\n"; } else { print "not ok 23\n"; } my $written = "tell_write.txt"; -END { unlink($written) } +END { 1 while unlink($written) } close($tst); open($tst,">$written") || die "Cannot open $written:$!"; -- 2.7.4