From: Vincent Pit Date: Fri, 24 Dec 2010 17:59:58 +0000 (+0100) Subject: Also share $done_testing X-Git-Tag: v0.01~20 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Leaner.git;a=commitdiff_plain;h=04fdbaf85a26eafd9d5d1e15c3ee46ef360de509 Also share $done_testing --- diff --git a/lib/Test/Leaner.pm b/lib/Test/Leaner.pm index dfba80f..336bf31 100644 --- a/lib/Test/Leaner.pm +++ b/lib/Test/Leaner.pm @@ -35,7 +35,7 @@ sub SKIP_ALL () { -2 } BEGIN { if (THREADSAFE) { - threads::shared::share($_) for $plan, $test, $failed, $no_diag; + threads::shared::share($_) for $plan, $test, $failed, $no_diag, $done_testing; } lock $plan if THREADSAFE;