diff options
Diffstat (limited to 'cpan/Test-Simple/lib/Test2/IPC.pm')
-rw-r--r-- | cpan/Test-Simple/lib/Test2/IPC.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpan/Test-Simple/lib/Test2/IPC.pm b/cpan/Test-Simple/lib/Test2/IPC.pm index 7e7ae2632e..5493bd470e 100644 --- a/cpan/Test-Simple/lib/Test2/IPC.pm +++ b/cpan/Test-Simple/lib/Test2/IPC.pm @@ -2,7 +2,7 @@ package Test2::IPC; use strict; use warnings; -our $VERSION = '1.302136'; +our $VERSION = '1.302138'; use Test2::API::Instance; @@ -18,6 +18,9 @@ use Test2::API qw{ context }; +# Make sure stuff is finalized before anyone tried to fork or start a new thread. +INIT { context()->release() } + use Carp qw/confess/; our @EXPORT_OK = qw/cull/; |