]> git.vpit.fr Git - perl/modules/autovivification.git/blob - t/51-threads-teardown.t
Preserve the PATH environment variable when running a sub-perl on cygwin
[perl/modules/autovivification.git] / t / 51-threads-teardown.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use lib 't/lib';
7 use autovivification::TestThreads;
8
9 use Test::Leaner tests => 1;
10
11 sub run_perl {
12  my $code = shift;
13
14  my ($SystemRoot, $PATH) = @ENV{qw<SystemRoot PATH>};
15  local %ENV;
16  $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
17  $ENV{PATH}       = $PATH       if $^O eq 'cygwin'  and defined $PATH;
18
19  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
20 }
21
22 SKIP:
23 {
24  skip 'Fails on 5.8.2 and lower' => 1 if "$]" <= 5.008002;
25
26  my $status = run_perl <<' RUN';
27   my $code = 1 + 2 + 4;
28   use threads;
29   $code -= threads->create(sub {
30    eval q{no autovivification; my $x; my $y = $x->{foo}; $x};
31    return defined($x) ? 0 : 1;
32   })->join;
33   $code -= defined(eval q{my $x; my $y = $x->{foo}; $x}) ? 2 : 0;
34   $code -= defined(eval q{no autovivification; my $x; my $y = $x->{foo}; $x})
35            ? 0 : 4;
36   exit $code;
37  RUN
38  is $status, 0, 'loading the pragma in a thread and using it outside doesn\'t segfault';
39 }