X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F41-threads-teardown.t;h=8003fad399a7deb266158c8bfa6db3ba6c52a0ba;hb=b88a054e2ca91c186a420e015b3a383b406ff2d0;hp=ecb26368bebb03b257eb3305d04378991c71d007;hpb=8845e141913781c0e0b4b928a38fd23da1752f6b;p=perl%2Fmodules%2Findirect.git diff --git a/t/41-threads-teardown.t b/t/41-threads-teardown.t index ecb2636..8003fad 100644 --- a/t/41-threads-teardown.t +++ b/t/41-threads-teardown.t @@ -39,9 +39,9 @@ SKIP: { my $status = run_perl <<' RUN'; use threads; BEGIN { require indirect; } - sub X::DESTROY { eval 'no indirect; 1'; exit 1 if $@ } + sub X2::DESTROY { eval 'no indirect; 1'; exit 1 if $@ } threads->create(sub { - my $x = bless { }, 'X'; + my $x = bless { }, 'X2'; $x->{self} = $x; return; })->join; @@ -57,15 +57,16 @@ SKIP: { use threads::shared; my $code : shared; $code = 0; - no indirect cb => sub { lock $code; ++$code }; - sub X::DESTROY { eval $_[0]->{code} } + no indirect hook => sub { lock $code; ++$code }; + sub X3::DESTROY { eval $_[0]->{code} } threads->create(sub { - my $x = bless { code => 'new Z' }, 'X'; + my $x = bless { code => 'new Z3' }, 'X3'; $x->{self} = $x; return; })->join; exit $code; RUN skip RUN_PERL_FAILED() => 1 unless defined $status; - is $status, 0, 'indirect does not check eval STRING during global destruction at the end of a thread'; + my $code = $status >> 8; + is $code, 1, 'indirect checks eval STRING during global destruction at the end of a cloned thread'; }