X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F50-external.t;h=e9c828b0629b47d0562c50825845d0b7ec089f0d;hp=2476cd68421f883b2a2e7fb4909a91af6e988068;hb=640ff2586796fa381d8441b87aa635c5fb2a3170;hpb=8eb21ccddb7d9f4040f3ec9069cf013c4d6f4a51 diff --git a/t/50-external.t b/t/50-external.t index 2476cd6..e9c828b 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -3,7 +3,9 @@ use strict; use warnings; -use Test::More tests => 4; +use Config; + +use Test::More tests => 6; use lib 't/lib'; use VPIT::TestHelpers; @@ -40,3 +42,23 @@ SKIP: 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'; } + +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 }'; + 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 }'; + is $status, 0, 'indirect and local END blocks executed at the end of a forked process'; +}