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