X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F50-external.t;h=9e80f01678ffa7522bfa94b8752a7c1bf02f5331;hb=80b62f6c27bec43d996676dbd0bff15b6027255f;hp=f8dca42522242f0c164f86e85393b1b04915cfd9;hpb=2b4cc6c04da4c960652e76a3b14e32554550f3e1;p=perl%2Fmodules%2Findirect.git diff --git a/t/50-external.t b/t/50-external.t index f8dca42..9e80f01 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -3,19 +3,12 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More tests => 3; -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; +use lib 't/lib'; +use VPIT::TestHelpers; - system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code; -} +BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } { my $status = run_perl 'no indirect; qq{a\x{100}b} =~ /\A[\x00-\x7f]*\z/;'; @@ -24,7 +17,14 @@ 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'; } + +SKIP: +{ + load_or_skip('Devel::CallParser', undef, undef, 1); + my $status = run_perl "use Devel::CallParser (); no indirect; sub ok { } ok 1"; + is $status, 0, 'indirect is not getting upset by Devel::CallParser'; +}