X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F50-external.t;h=5d3d37564b0e20987e51a429e9ab1d985c495c68;hp=f8dca42522242f0c164f86e85393b1b04915cfd9;hb=eab9532b534e1c2efca5410ae4502af7ce43f941;hpb=2b4cc6c04da4c960652e76a3b14e32554550f3e1 diff --git a/t/50-external.t b/t/50-external.t index f8dca42..5d3d375 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -10,9 +10,10 @@ BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } sub run_perl { my $code = shift; - my $SystemRoot = $ENV{SystemRoot}; + my ($SystemRoot, $PATH) = @ENV{qw}; local %ENV; $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot; + $ENV{PATH} = $PATH if $^O eq 'cygwin' and defined $PATH; system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code; } @@ -24,7 +25,7 @@ sub run_perl { SKIP: { - skip 'Fixed in core only since 5.12' => 1 unless $] >= 5.012; + skip 'Fixed in core only since 5.12' => 1 unless "$]" >= 5.012; my $status = run_perl 'no indirect hook => sub { exit 2 }; new X'; is $status, 2 << 8, 'no semicolon at the end of -e'; }