Move script.t from t/comp to t/run, as it's a test for invoking perl.
[p5sagit/p5-mst-13.2.git] / t / run / switchI.t
index cfb0f6e..ffee2f9 100644 (file)
@@ -10,24 +10,23 @@ BEGIN {
     plan(4);
 }
 
-my $Is_MacOS = $^O eq 'MacOS';
 my $Is_VMS   = $^O eq 'VMS';
 my $lib;
 
-$lib = $Is_MacOS ? ':Bla:' : 'Bla';
+$lib = 'Bla';
 ok(grep { $_ eq $lib } @INC[0..($#INC-1)]);
 SKIP: {
   skip 'Double colons not allowed in dir spec', 1 if $Is_VMS;
-  $lib = $Is_MacOS ? 'Foo::Bar:' : 'Foo::Bar';
+  $lib = 'Foo::Bar';
   ok(grep { $_ eq $lib } @INC[0..($#INC-1)]);
 }
 
-$lib = $Is_MacOS ? ':Bla2:' : 'Bla2';
-fresh_perl_is("print grep { \$_ eq '$lib' } \@INC", $lib,
+$lib = 'Bla2';
+fresh_perl_is("print grep { \$_ eq '$lib' } \@INC[0..(\$#INC-1)]", $lib,
              { switches => ['-IBla2'] }, '-I');
 SKIP: {
   skip 'Double colons not allowed in dir spec', 1 if $Is_VMS;
-  $lib = $Is_MacOS ? 'Foo::Bar2:' : 'Foo::Bar2';
+  $lib = 'Foo::Bar2';
   fresh_perl_is("print grep { \$_ eq '$lib' } \@INC", $lib,
                { switches => ['-IFoo::Bar2'] }, '-I with colons');
 }