]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blobdiff - t/59-unwind-threads.t
Skip threads tests unless perl version is 5.13.4 or greater
[perl/modules/Scope-Upper.git] / t / 59-unwind-threads.t
index ddeacb90bd072ad93a9ce19e723fcd49d2c56e4f..aabb5fe635f7cd19d39f588ed4cda80199de53bb 100644 (file)
@@ -12,9 +12,14 @@ sub skipall {
 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;