SKIP: {
my $home = $ENV{HOME} ? $ENV{HOME} : undef;
+ skip "Needs case and syntax tweaks for VMS", 14 if $^O eq 'VMS';
unless (defined $home) {
my @info = eval { getpwuid $> };
skip "No home directory for tilde-expansion tests", 14 if $@;
# Again, with named users
SKIP: {
+ skip "Needs case and syntax tweaks for VMS", 1 if $^O eq 'VMS';
my @info = eval { getpwuid $> };
skip "No home directory for tilde-expansion tests", 1 if $@;
my ($me, $home) = @info[0,7];
plan skip_all => 'C_support not enabled';
} elsif ( !$have_c_compiler ) {
plan skip_all => 'C_support enabled, but no compiler found';
+ } elsif ( $^O eq 'VMS' ) {
+ plan skip_all => 'Child test output confuses harness';
} else {
plan tests => 22;
}