X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F81-threads-teardown.t;h=7a5c2270268a3df0b335a154fc532d4b3a872bb9;hb=cb00fbfded7c20f01c75b520c5e5d2b582e2d4be;hp=741d2242e506b8216c4dd9b2ab716522298cf813;hpb=05e35b66f2a12a2416a5964be485a4f741682a47;p=perl%2Fmodules%2FLexical-Types.git diff --git a/t/81-threads-teardown.t b/t/81-threads-teardown.t index 741d224..7a5c227 100644 --- a/t/81-threads-teardown.t +++ b/t/81-threads-teardown.t @@ -4,20 +4,10 @@ use strict; use warnings; use lib 't/lib'; +use VPIT::TestHelpers; use Lexical::Types::TestThreads; -use Test::More tests => 1; - -sub run_perl { - my $code = shift; - - my ($SystemRoot, $PATH) = @ENV{qw}; - local %ENV; - $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot; - $ENV{PATH} = $PATH if $^O eq 'cygwin' and defined $PATH; - - system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code; -} +use Test::More tests => 2; { my $status = run_perl <<' RUN'; @@ -42,3 +32,21 @@ sub run_perl { RUN is $status, 0, 'loading the pragma in a thread and using it outside doesn\'t segfault'; } + +{ + my $status = run_perl <<' RUN'; + use threads; + BEGIN { require Lexical::Types; } + sub X::DESTROY { + eval 'use Lexical::Types; package Z; my Z $z = 1'; + exit 1 if $@; + } + threads->create(sub { + my $x = bless { }, 'X'; + $x->{self} = $x; + return; + })->join; + exit 0; + RUN + is $status, 0, 'Lexical::Types can be loaded in eval STRING during global destruction at the end of a thread'; +}