diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-16 04:21:53 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-16 04:21:53 +0000 |
commit | 8881896e2b6c75868d2a80cf3faaa4960cc38832 (patch) | |
tree | 6162dc67c944e45cad7edbab8f171546092a1ec0 | |
parent | fe169e074ced6c4ea9171b838d3697595aa1a180 (diff) | |
download | perl-8881896e2b6c75868d2a80cf3faaa4960cc38832.tar.gz |
I sometimes outsmart myself.
p4raw-id: //depot/perl@13714
-rw-r--r-- | lib/ExtUtils/MM_Cygwin.t | 2 | ||||
-rw-r--r-- | lib/ExtUtils/MM_VMS.t | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_Cygwin.t b/lib/ExtUtils/MM_Cygwin.t index 6a718b9b32..17ae269fda 100644 --- a/lib/ExtUtils/MM_Cygwin.t +++ b/lib/ExtUtils/MM_Cygwin.t @@ -11,7 +11,7 @@ BEGIN { if ($^O =~ /cygwin/i) { plan tests => 17; } else { - plan skip_all => "This is not $^O"; + plan skip_all => "This is not cygwin"; } } diff --git a/lib/ExtUtils/MM_VMS.t b/lib/ExtUtils/MM_VMS.t index 759cebb445..784008aecb 100644 --- a/lib/ExtUtils/MM_VMS.t +++ b/lib/ExtUtils/MM_VMS.t @@ -14,7 +14,7 @@ BEGIN { # is unlikely to be installed on non VMS machines # (although not impossible: no xs, no sys$parse(), pure perl). else { - plan( skip_all => "This is not $^O" ); + plan( skip_all => "This is not VMS" ); } } |