]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blobdiff - t/59-unwind-threads.t
Activate the correct pad when calling the uplevel'd code
[perl/modules/Scope-Upper.git] / t / 59-unwind-threads.t
index aabb5fe635f7cd19d39f588ed4cda80199de53bb..65ef8272c18cf8d5c61a3de6af515a7ae3449566 100644 (file)
@@ -9,7 +9,7 @@ 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;
@@ -17,14 +17,14 @@ BEGIN {
  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;
+                                              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<unwind UP SU_THREADSAFE>;
 
 my $num;