From: Craig A. Berry Date: Sun, 8 Jan 2006 13:33:43 +0000 (+0000) Subject: pod2usage2.t is not readily portable to VMS either X-Git-Tag: perl-5.9.3~167 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/81f61c1a1801c3f63576c7bdd2b7e2b2f91cd51d?ds=sidebyside pod2usage2.t is not readily portable to VMS either p4raw-id: //depot/perl@26710 --- diff --git a/t/pod/pod2usage2.t b/t/pod/pod2usage2.t index 5006a7c..e5fa93e 100644 --- a/t/pod/pod2usage2.t +++ b/t/pod/pod2usage2.t @@ -3,8 +3,8 @@ use Test::More; BEGIN { - if ($^O eq 'MSWin32') { - plan skip_all => "Not portable on Win32\n"; + if ($^O eq 'MSWin32' || $^O eq 'VMS') { + plan skip_all => "Not portable on Win32 or VMS\n"; } else { plan tests => 15;