h2xs.t fix for VMS
Craig A. Berry [Fri, 22 Mar 2002 15:47:38 +0000 (09:47 -0600)]
From: "Craig A. Berry" <craigberry@mac.com>
Message-Id: <5.1.0.14.2.20020322154432.01ad4930@exchi01>

p4raw-id: //depot/perl@15429

lib/h2xs.t

index 53739b2..5acc0b2 100644 (file)
@@ -176,6 +176,10 @@ while (my ($args, $version, $expectation) = splice @tests, 0, 3) {
       $_ = ':' . join(':',split(/\//,$_));
       $_ =~ s/$name:t:1.t/$name:t\/1.t/; # is this an h2xs bug?
     }
+    if ($^O eq 'VMS') {
+      $_ .= '.' unless $_ =~ m/\./;
+      $_ = lc($_) unless exists $got{$_};
+    }
     ok (-e $_, "check for $_") and delete $got{$_};
   }
   my @extra = keys %got;