From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Tue, 18 Dec 2001 22:07:35 +0000 (+0000)
Subject: Re-applying #13752 until a better solution can be found.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=87a750c3268299c48b98faa2da2808955887ff8c;p=p5sagit%2Fp5-mst-13.2.git

Re-applying #13752 until a better solution can be found.

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

diff --git a/lib/ExtUtils/t/MM_Unix.t b/lib/ExtUtils/t/MM_Unix.t
index efd047a..1b918e8 100644
--- a/lib/ExtUtils/t/MM_Unix.t
+++ b/lib/ExtUtils/t/MM_Unix.t
@@ -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' ); }