(reintroduced by #13766)
Michael G. Schwern [Tue, 18 Dec 2001 00:00:23 +0000 (19:00 -0500)]
(retracted by #13759)

Subject: [PATCH lib/ExtUtils/t/MM_Unix.t] All the world's not a Unix
Message-ID: <20011218050023.GA27893@blackrider>

p4raw-id: //depot/perl@13752

lib/ExtUtils/t/MM_Unix.t

index efd047a..1b918e8 100644 (file)
@@ -7,7 +7,16 @@ BEGIN {
     @INC = '../lib';
 }
 
-BEGIN { use Test::More; plan tests => 90; }
+BEGIN { 
+    use Test::More; 
+
+    if( $^O =~ /^VMS|os2|MacOS|MSWin32|cygwin$/ ) {
+        plan skip_all => 'Non-Unix platform';
+    }
+    else {
+        plan tests => 90; 
+    }
+}
 
 BEGIN { use_ok( 'ExtUtils::MM_Unix' ); }