diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/t/MM_Unix.t | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/MM_Unix.t b/lib/ExtUtils/t/MM_Unix.t index efd047a427..1b918e8014 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' ); } |