X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F59-unwind-threads.t;h=65ef8272c18cf8d5c61a3de6af515a7ae3449566;hb=7a192f2ff19c1882fb55fccabac1fc6d9105fb29;hp=ddeacb90bd072ad93a9ce19e723fcd49d2c56e4f;hpb=95f528be96f28fc6246faddb1e18d7fe2d0a043b;p=perl%2Fmodules%2FScope-Upper.git diff --git a/t/59-unwind-threads.t b/t/59-unwind-threads.t index ddeacb9..65ef827 100644 --- a/t/59-unwind-threads.t +++ b/t/59-unwind-threads.t @@ -9,17 +9,22 @@ sub skipall { Test::More::plan(skip_all => $msg); } -use Config qw/%Config/; +use Config qw<%Config>; BEGIN { + my $force = $ENV{PERL_SCOPE_UPPER_TEST_THREADS} ? 1 : !1; + my $t_v = $force ? '0' : '1.67'; skipall 'This perl wasn\'t built to support threads' unless $Config{useithreads}; - skipall 'threads required to test thread safety' unless eval "use threads; 1"; + skipall 'perl 5.13.4 required to test thread safety' + unless $force or "$]" >= 5.013004; + skipall "threads $t_v required to test thread safety" + unless eval "use threads $t_v; 1"; } use Test::More; -use Scope::Upper qw/unwind UP SU_THREADSAFE/; +use Scope::Upper qw; my $num;