X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F50-external.t;h=b98a18fb96425d75495605ef1ce8a011fba5f009;hb=0a8741013832fe465960ec1d6c7618f697f3d21e;hp=2b318297eb101b66df6fe530955cd1a647801b37;hpb=4b4db54a0b823391ba82d3c9f4d6809601595d94;p=perl%2Fmodules%2Findirect.git diff --git a/t/50-external.t b/t/50-external.t index 2b31829..b98a18f 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -3,28 +3,69 @@ use strict; use warnings; -use Test::More tests => 2; +use Config; -BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } +use Test::More tests => 6; -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; +BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } - system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code; -} +my $run_perl_failed = 'Could not execute perl subprocess'; -{ +SKIP: { my $status = run_perl 'no indirect; qq{a\x{100}b} =~ /\A[\x00-\x7f]*\z/;'; + skip $run_perl_failed => 1 unless defined $status; is $status, 0, 'RT #47866'; } -SKIP: -{ +SKIP: { skip 'Fixed in core only since 5.12' => 1 unless "$]" >= 5.012; + my $status = run_perl 'no indirect hook => sub { exit 2 }; new X'; + skip $run_perl_failed => 1 unless defined $status; 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"; + skip $run_perl_failed => 1 unless defined $status; + 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;'; + skip $run_perl_failed => 1 unless defined $status; + is $status, 0, 'indirect does not croak while package empty is in use'; +} + +my $fork_status; +if ($Config::Config{d_fork} or $Config::Config{d_pseudofork}) { + $fork_status = run_perl 'my $pid = fork; exit 1 unless defined $pid; if ($pid) { waitpid $pid, 0; my $status = $?; exit(($status >> 8) || $status) } else { exit 0 }'; +} + +SKIP: { + my $tests = 2; + skip 'fork() or pseudo-forks are required to check END blocks in subprocesses' + => $tests unless defined $fork_status; + skip "Could not even fork a simple process (sample returned $fork_status)" + => $tests unless $fork_status == 0; + + my $status = run_perl 'require indirect; END { eval q[1] } my $pid = fork; exit 0 unless defined $pid; if ($pid) { waitpid $pid, 0; my $status = $?; exit(($status >> 8) || $status) } else { exit 0 }'; + skip $run_perl_failed => $tests unless defined $status; + is $status, 0, 'indirect and global END blocks executed at the end of a forked process (RT #99083)'; + + $status = run_perl 'require indirect; my $pid = fork; exit 0 unless defined $pid; if ($pid) { waitpid $pid, 0; my $status = $?; exit(($status >> 8) || $status) } else { eval q[END { eval q(1) }]; exit 0 }'; + skip $run_perl_failed => ($tests - 1) unless defined $status; + is $status, 0, 'indirect and local END blocks executed at the end of a forked process'; +}