From 400084413bade2cd02d3b655c75e4cb7dc93fc3f Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Sat, 17 Nov 2007 04:19:47 +0000 Subject: [PATCH] Skip Module::Build ppm test -- not ready for prime time on VMS. p4raw-id: //depot/perl@32357 --- lib/Module/Build/t/ppm.t | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.7.4