]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Fix test failures with 5.12 on Windows where Strawberry Perl crashes because the...
authorVincent Pit <vince@profvince.com>
Sun, 18 Apr 2010 20:53:42 +0000 (22:53 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 18 Apr 2010 20:53:42 +0000 (22:53 +0200)
t/41-threads-teardown.t
t/80-regressions.t

index d8a6fc92b916ae1ada2fde01d2112b69125fc9e4..b2186e8ee64b216ad231ec01e1e59deae1adcd4b 100644 (file)
@@ -31,7 +31,10 @@ BEGIN {
 sub run_perl {
  my $code = shift;
 
+ my $SystemRoot   = $ENV{SystemRoot};
  local %ENV;
+ $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
+
  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
 }
 
index 19a66938aaeb0bfa8ac3ad38048bdd696229d433..e717bdfe6447e333eca31860d68746e6c3537dec 100644 (file)
@@ -10,7 +10,10 @@ BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} }
 sub run_perl {
  my $code = shift;
 
+ my $SystemRoot   = $ENV{SystemRoot};
  local %ENV;
+ $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
+
  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
 }