SKIP:
{
skip( "different file permission semantics",1)
- if ($Is_Dosish || $^O eq 'MacOS') ;
+ if $Is_Dosish;
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
$blksize,$blocks) = stat($Dfile);
ok(($mode & 0777) == ($^O eq 'vos' ? 0750 : 0640) , "File permissions");
{
plan skip_all => "Test uses Socket, Socket not built";
}
- if ($^O eq 'MacOS' || ($^O eq 'irix' && $Config{osvers} == 5)) {
+ if ($^O eq 'irix' && $Config{osvers} == 5) {
plan skip_all => "Test relies on resolution of localhost, fails on $^O ($Config{osvers})";
}
}
is( $$fake_out, $vbl_0, '-pathlist parameter' );
}
-SKIP: { # Test exit status from pod2usage()
- skip "Exit status broken on Mac OS", 1 if $^O eq 'MacOS';
+{ # Test exit status from pod2usage()
my $exit = ($^O eq 'VMS' ? 2 : 42);
my $dev_null = File::Spec->devnull;
my $args = join ", ", (
#!./perl
-BEGIN {
- chdir 't' if -d 't';
- if ($^O eq 'MacOS') {
- @INC = qw(: ::lib ::macos:lib);
- } else {
- @INC = '.';
- push @INC, '../lib';
- }
-}
use strict;
use warnings;
use Test::More tests => 11;
}
chdir 't' if -d 't';
@INC = '../lib';
- @INC = "::lib" if $^O eq 'MacOS'; # module parses @INC itself
require Config; import Config;
if ($Config{'extensions'} !~ /\bStorable\b/) {
print "1..0 # Skip: Storable was not built; Unicode::UCD uses Storable\n";