[email protected]:50:08 perl5db.t leaves db.out behind on VMS
"John E. Malmberg" <[email protected]>
| Newsgroups | gmane.comp.lang.perl.perl5.porters,gmane.comp.lang.perl.ports.vms |
|---|---|
| Message-ID | <[email protected]> |
This patch fixes lib/perl5db.t to not leave a db.out file behind on VMS after a test run. -John [email protected] Personal Opinion Only
perl5db_t.gdiff
(text/plain, 218 B)
--- /rsync_root/perl/lib/perl5db.t Fri Dec 19 03:14:10 2008
+++ lib/perl5db.t Mon May 25 16:02:21 2009
@@ -85,5 +85,5 @@
# clean up.
END {
- unlink qw(.perldb db.out);
+ 1 while unlink qw(.perldb db.out);
}