X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F30-threads.t;h=c616b76ecf65a3804a3de55cb5461c87a30ac331;hb=c5d3b9e2115202f79337d1fcfe44ae673c2d9251;hp=5122dd7ec73f6d9dd44f606ccf26211ea5083c70;hpb=569b0505de7c5021759a402e898c1fcaaee2caac;p=perl%2Fmodules%2FLexical-Types.git diff --git a/t/30-threads.t b/t/30-threads.t index 5122dd7..c616b76 100644 --- a/t/30-threads.t +++ b/t/30-threads.t @@ -9,14 +9,14 @@ sub skipall { Test::More::plan(skip_all => $msg); } -use Config qw/%Config/; +use Config qw<%Config>; BEGIN { my $force = $ENV{PERL_LEXICAL_TYPES_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; + unless $force or "$]" >= 5.013004; } use threads; @@ -67,7 +67,7 @@ EVALD SKIP: { skip 'Hints aren\'t propagated into eval STRING below perl 5.10' => 3 - unless $] >= 5.010; + unless "$]" >= 5.010; eval <<'EVALD'; my Tag $t3; is $t3, $tid, "typed lexical correctly initialized in eval (propagated) at run $_ in thread $tid"