diff options
-rw-r--r-- | lib/Module/Build/t/ppm.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Module/Build/t/ppm.t b/lib/Module/Build/t/ppm.t index afc11e1f49..eec8a92316 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; } |