From: Peter Prymmer <PPrymmer@factset.com>
Date: Mon, 15 Sep 2003 15:28:52 +0000 (-0400)
Subject: Re: perl@21233 looks ok on VMS 7.3-1
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=30bd38ce8ffd8d44fdcbc0625913e5289c3b8acd;p=p5sagit%2Fp5-mst-13.2.git

Re: perl@21233 looks ok on VMS 7.3-1
Message-ID: <OF6F1E6CF4.9206F415-ON85256DA2.006A58F1-85256DA2.006B0330@factset.com>

p4raw-id: //depot/perl@21234
---

diff --git a/lib/Memoize/t/tie_sdbm.t b/lib/Memoize/t/tie_sdbm.t
index 07a7a80..4889535 100644
--- a/lib/Memoize/t/tie_sdbm.t
+++ b/lib/Memoize/t/tie_sdbm.t
@@ -37,8 +37,14 @@ if (eval {require File::Spec::Functions}) {
 }
 $file = catfile($tmpdir, "md$$");
 1 while unlink $file, "$file.dir", "$file.pag";
+if ( $^O eq 'VMS' ) {
+    1 while unlink "$file.sdbm_dir";
+}
 tryout('Memoize::SDBM_File', $file, 1);  # Test 1..4
 1 while unlink $file, "$file.dir", "$file.pag";
+if ( $^O eq 'VMS' ) {
+    1 while unlink "$file.sdbm_dir";
+}
 
 sub tryout {
   my ($tiepack, $file, $testno) = @_;