Author: dagolden
Date: Thu Jan 8 19:56:32 2009
New Revision: 12311
Modified:
Module-Build/trunk/ (props changed)
Module-Build/trunk/t/ppm.t
Log:
skip ppm.t on VMS (backported from blead)
Modified: Module-Build/trunk/t/ppm.t
==============================================================================
--- Module-Build/trunk/t/ppm.t (original)
+++ Module-Build/trunk/t/ppm.t Thu Jan 8 19:56:32 2009
@@ -20,6 +20,8 @@
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 => 13;
}