From: Vincent Pit Date: Mon, 31 Aug 2009 16:48:34 +0000 (+0200) Subject: Don't quote -T/-t in _scan_test() X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=79b01a68c72bb52b3469bd03bbe6d75bd93c9400;p=p5sagit%2Fp5-mst-13.2.git Don't quote -T/-t in _scan_test() This should only be needed on VMS, and _quote_args() will take care of it. --- diff --git a/t/TEST b/t/TEST index ab543f8..f004f9b 100755 --- a/t/TEST +++ b/t/TEST @@ -145,11 +145,11 @@ sub _scan_test { my $switch = ""; if ($first_line =~ /#!.*\bperl.*\s-\w*([tT])/) { - $switch = qq{"-$1"}; + $switch = "-$1"; } else { if ($::taintwarn) { # not all tests are expected to pass with this option - $switch = '"-t"'; + $switch = '-t'; } else { $switch = ''; }