From: Michael G. Schwern Date: Tue, 18 Dec 2001 00:00:23 +0000 (-0500) Subject: (reintroduced by #13766) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f9aa0eac43842ae7bc710894ae7c99396d0da578;p=p5sagit%2Fp5-mst-13.2.git (reintroduced by #13766) (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 --- 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' ); }