6 use Test::More tests => 2;
8 BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} }
13 my $SystemRoot = $ENV{SystemRoot};
15 $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
17 system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
21 my $status = run_perl 'no indirect; qq{a\x{100}b} =~ /\A[\x00-\x7f]*\z/;';
22 is $status, 0, 'RT #47866';
27 skip 'Fixed in core only since 5.12' => 1 unless "$]" >= 5.012;
28 my $status = run_perl 'no indirect hook => sub { exit 2 }; new X';
29 is $status, 2 << 8, 'no semicolon at the end of -e';