utftaint.t won't be able to run tests with -T if you have
Nicholas Clark [Mon, 20 Feb 2006 00:36:34 +0000 (00:36 +0000)]
Insecure directory in $ENV{PATH}
so skip them. (Probably this means you have . in your PATH)

p4raw-id: //depot/perl@27236

t/op/utftaint.t

index 1294526..1cadc07 100644 (file)
@@ -143,10 +143,18 @@ for my $ary ([ascii => 'perl'], [latin1 => "\xB6"]) {
     is(tainted($taint), tainted($arg), "tainted: $encode, downgrade down");
 }
 
-fresh_perl_is('$a = substr $^X, 0, 0; /\x{100}/i; /$a\x{100}/i || print q,ok,',
-             'ok', {switches => ["-T", "-l"]},
-             "matching a regexp is taint agnostic");
-
-fresh_perl_is('$a = substr $^X, 0, 0; /$a\x{100}/i || print q,ok,',
-             'ok', {switches => ["-T", "-l"]},
-             "therefore swash_init should be taint agnostic");
+SKIP: {
+    eval {
+       fresh_perl_is('$a = substr $^X, 0, 0; /\x{100}/i; /$a\x{100}/i || print q,ok,',
+                     'ok', {switches => ["-T", "-l"]},
+                     "matching a regexp is taint agnostic");
+       };
+    if ($@ =~ /^Insecure directory in/) {
+       chomp $@;
+       skip ("Can't run taint checks with $@", 2);
+    } 
+
+    fresh_perl_is('$a = substr $^X, 0, 0; /$a\x{100}/i || print q,ok,',
+                 'ok', {switches => ["-T", "-l"]},
+                 "therefore swash_init should be taint agnostic");
+}