X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F40-threads.t;h=bde269afacf8a5d9196f9437cf03cb31dc26570b;hp=63869b816e5c644cfd4117e152a306b72755df1c;hb=b11e5a01561dde92d778ab423666bc76ac358c6a;hpb=b380c989af97df9d8ee8adf081c3aed4f7b6309b diff --git a/t/40-threads.t b/t/40-threads.t index 63869b8..bde269a 100644 --- a/t/40-threads.t +++ b/t/40-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_INDIRECT_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; @@ -60,7 +60,7 @@ sub expect { SKIP: { skip 'Hints aren\'t propagated into eval STRING below perl 5.10' => 3 - unless $] >= 5.010; + unless "$]" >= 5.010; my $class = "Pineapple$tid"; my @warns; {