From: Nicholas Clark Date: Mon, 20 Feb 2006 00:36:34 +0000 (+0000) Subject: utftaint.t won't be able to run tests with -T if you have X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e7b79d5064e218180834206ebc0da9a68d87f20e;p=p5sagit%2Fp5-mst-13.2.git utftaint.t won't be able to run tests with -T if you have Insecure directory in $ENV{PATH} so skip them. (Probably this means you have . in your PATH) p4raw-id: //depot/perl@27236 --- diff --git a/t/op/utftaint.t b/t/op/utftaint.t index 1294526..1cadc07 100644 --- a/t/op/utftaint.t +++ b/t/op/utftaint.t @@ -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"); +}