Re-applying #13752 until a better solution can be found.
authorJarkko Hietaniemi <jhi@iki.fi>
Tue, 18 Dec 2001 22:07:35 +0000 (22:07 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 18 Dec 2001 22:07:35 +0000 (22:07 +0000)
p4raw-id: //depot/perl@13766

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' ); }