]> git.vpit.fr Git - perl/modules/indirect.git/blob - t/80-regressions.t
Remove some dead code in indirect_ck_method
[perl/modules/indirect.git] / t / 80-regressions.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 1;
7
8 BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} }
9
10 sub run_perl {
11  my $code = shift;
12
13  my $SystemRoot   = $ENV{SystemRoot};
14  local %ENV;
15  $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
16
17  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
18 }
19
20 {
21  my $status = run_perl 'no indirect; qq{a\x{100}b} =~ /\A[\x00-\x7f]*\z/;';
22  is $status, 0, 'RT #47866';
23 }