From: Craig A. Berry Date: Sat, 17 Nov 2007 04:19:47 +0000 (+0000) Subject: Skip Module::Build ppm test -- not ready for prime time on VMS. X-Git-Tag: accepted/trunk/20130322.191538~14189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=400084413bade2cd02d3b655c75e4cb7dc93fc3f;p=platform%2Fupstream%2Fperl.git Skip Module::Build ppm test -- not ready for prime time on VMS. p4raw-id: //depot/perl@32357 --- diff --git a/lib/Module/Build/t/ppm.t b/lib/Module/Build/t/ppm.t index afc11e1..eec8a92 100644 --- a/lib/Module/Build/t/ppm.t +++ b/lib/Module/Build/t/ppm.t @@ -20,6 +20,8 @@ my $HTML_support = Module::Build::ConfigData->feature('HTML_support'); plan skip_all => "Archive::Tar not installed to read archives."; } elsif ( ! eval {IO::Zlib->VERSION(1.01)} ) { plan skip_all => "IO::Zlib 1.01 required to read compressed archives."; + } elsif ( $^O eq 'VMS' ) { + plan skip_all => "Needs porting work on VMS"; } else { plan tests => 12; }