X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=blobdiff_plain;f=t%2F30-threads.t;h=c616b76ecf65a3804a3de55cb5461c87a30ac331;hp=d48fa023032c4b5607433e873c464a307d0e4961;hb=61f64dfa5fa4f435e6cd854d22e4325ef1eb0068;hpb=26192e1043cbd952cc7acaa033cc473ffd074085 diff --git a/t/30-threads.t b/t/30-threads.t index d48fa02..c616b76 100644 --- a/t/30-threads.t +++ b/t/30-threads.t @@ -16,7 +16,7 @@ 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; } 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"