From: Vincent Pit Date: Mon, 20 Apr 2015 16:20:31 +0000 (-0300) Subject: Clarify package names in t/41-threads-teardown.t X-Git-Tag: rt104312~4 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=907b0beb21a8676cccec31189f4e51fca75b2157 Clarify package names in t/41-threads-teardown.t --- diff --git a/t/41-threads-teardown.t b/t/41-threads-teardown.t index ecb2636..a5d45f6 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; @@ -58,9 +58,9 @@ SKIP: { my $code : shared; $code = 0; no indirect cb => sub { lock $code; ++$code }; - sub X::DESTROY { eval $_[0]->{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;