blob: 029f27dd68a27fc6b609fae97a3be0b8140535d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!./perl -Tw
# [perl #33173] shellwords.pl and tainting
BEGIN {
if ( $ENV{PERL_CORE} ) {
chdir 't' if -d 't';
@INC = '../lib';
require Config;
no warnings 'once';
if ($Config::Config{extensions} !~ /\bList\/Util\b/) {
print "1..0 # Skip: Scalar::Util was not built\n";
exit 0;
}
}
}
use Text::ParseWords qw(shellwords old_shellwords);
use Scalar::Util qw(tainted);
print "1..2\n";
print "not " if grep { not tainted($_) } shellwords("$0$^X");
print "ok 1\n";
print "not " if grep { not tainted($_) } old_shellwords("$0$^X");
print "ok 2\n";
|