X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F40-threads.t;h=bde269afacf8a5d9196f9437cf03cb31dc26570b;hp=0bae40abaa28a962183f05e844e0ee5c346555fe;hb=b11e5a01561dde92d778ab423666bc76ac358c6a;hpb=46a10a703930cdad32d1fc76791760434a441eec diff --git a/t/40-threads.t b/t/40-threads.t index 0bae40a..bde269a 100644 --- a/t/40-threads.t +++ b/t/40-threads.t @@ -3,14 +3,20 @@ use strict; use warnings; -use Config qw/%Config/; +sub skipall { + my ($msg) = @_; + require Test::More; + Test::More::plan(skip_all => $msg); +} + +use Config qw<%Config>; BEGIN { - if (!$Config{useithreads}) { - require Test::More; - Test::More->import; - plan(skip_all => 'This perl wasn\'t built to support threads'); - } + 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; @@ -18,13 +24,11 @@ use threads; use Test::More; BEGIN { + delete $ENV{PERL_INDIRECT_PM_DISABLE}; require indirect; - if (indirect::I_THREADSAFE()) { - plan tests => 10 * 2 * (2 + 3); - defined and diag "Using threads $_" for $threads::VERSION; - } else { - plan skip_all => 'This indirect isn\'t thread safe'; - } + 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; } sub expect { @@ -56,7 +60,7 @@ sub expect { SKIP: { skip 'Hints aren\'t propagated into eval STRING below perl 5.10' => 3 - unless $] >= 5.010; + unless "$]" >= 5.010; my $class = "Pineapple$tid"; my @warns; {