X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F40-threads.t;fp=t%2F40-threads.t;h=33f583795e67afaf2451a95190813618fd2c9788;hp=bde269afacf8a5d9196f9437cf03cb31dc26570b;hb=1868a5983f5045def63a5cc7edf41454b407f66c;hpb=75a60b70d39a18521fcf5c2fbc7266100da27110 diff --git a/t/40-threads.t b/t/40-threads.t index bde269a..33f5837 100644 --- a/t/40-threads.t +++ b/t/40-threads.t @@ -3,33 +3,10 @@ use strict; use warnings; -sub skipall { - my ($msg) = @_; - require Test::More; - Test::More::plan(skip_all => $msg); -} - -use Config qw<%Config>; - -BEGIN { - my $force = $ENV{PERL_INDIRECT_TEST_THREADS} ? 1 : !1; - skipall 'This perl wasn\'t built to support threads' - unless $Config{useithreads}; - skipall 'perl 5.13.4 required to test thread safety' - unless $force or "$]" >= 5.013004; -} - -use threads; +use lib 't/lib'; +use indirect::TestThreads; -use Test::More; - -BEGIN { - delete $ENV{PERL_INDIRECT_PM_DISABLE}; - require indirect; - skipall 'This indirect isn\'t thread safe' unless indirect::I_THREADSAFE(); - plan tests => 10 * 2 * (2 + 3); - defined and diag "Using threads $_" for $threads::VERSION; -} +use Test::Leaner; sub expect { my ($pkg) = @_; @@ -79,5 +56,8 @@ SKIP: } } -my @t = map threads->create(\&try), 1 .. 10; -$_->join for @t; +my @threads = map spawn(\&try), 1 .. 10; + +$_->join for @threads; + +done_testing(scalar(@threads) * 2 * (2 + 3));