projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d584343
)
Re-applying #13752 until a better solution can be found.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Tue, 18 Dec 2001 22:07:35 +0000
(22:07 +0000)
committer
Jarkko 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
patch
|
blob
|
history
diff --git
a/lib/ExtUtils/t/MM_Unix.t
b/lib/ExtUtils/t/MM_Unix.t
index
efd047a
..
1b918e8
100644
(file)
--- 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' ); }