Replace #20763 with
Michael G. Schwern [Mon, 18 Aug 2003 17:07:30 +0000 (10:07 -0700)]
Subject: Re: [PATCH: perl@20760] VMS specific fix for lib/ExtUtils/t/Manifest.t
Message-ID: <20030819000729.GG14782@windhund.schwern.org>

p4raw-id: //depot/perl@20772

lib/ExtUtils/t/Manifest.t

index 253abf6..24c849b 100644 (file)
@@ -200,20 +200,16 @@ my %expect = ( 'makefile.pl' => '',
              );
 is_deeply( $files, \%expect, 'maniadd() vs MANIFEST without trailing newline');
 
+add_file('MANIFEST'   => 'Makefile.PL');
+maniadd({ foo => 'bar' });
+
 SKIP: {
     chmod( 0400, 'MANIFEST' );
     skip "Can't make MANIFEST read-only", 2 if -w 'MANIFEST';
 
-    if ( $^O eq 'VMS' ) {
-        eval {
-            maniadd({ 'meta.yml' => 'hock' });
-        };
-    }
-    else {
-        eval {
-            maniadd({ 'META.yml' => 'hock' });
-        };
-    }
+    eval {
+        maniadd({ 'foo' => 'bar' });
+    };
     is( $@, '',  "maniadd() won't open MANIFEST if it doesn't need to" );
 
     eval {