X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F50-external.t;h=2476cd68421f883b2a2e7fb4909a91af6e988068;hp=2b318297eb101b66df6fe530955cd1a647801b37;hb=217e4a123f681f91cd2cfb1e6eb001a9cb757d66;hpb=b11e5a01561dde92d778ab423666bc76ac358c6a diff --git a/t/50-external.t b/t/50-external.t index 2b31829..2476cd6 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 => 4; -BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } - -sub run_perl { - my $code = shift; +use lib 't/lib'; +use VPIT::TestHelpers; - 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; -} +BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } { my $status = run_perl 'no indirect; qq{a\x{100}b} =~ /\A[\x00-\x7f]*\z/;'; @@ -28,3 +21,22 @@ SKIP: 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'; +} + +SKIP: +{ + my $has_package_empty = do { + local $@; + eval 'no warnings "deprecated"; package; 1' + }; + skip 'Empty package only available on perl 5.8.x and below' => 1 + unless $has_package_empty; + my $status = run_perl 'no indirect hook => sub { }; exit 0; package; new X;'; + is $status, 0, 'indirect does not croak while package empty is in use'; +}