X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2Flib%2Findirect%2FTestThreads.pm;h=da805c01af3c90631b702fe620ff5ca5217b3934;hp=12903406f0999dc06a4b8f7f3e0ef02248974cef;hb=0d3bbce6be850fc6a0f709e7dfb0c5d8d3718ae3;hpb=1868a5983f5045def63a5cc7edf41454b407f66c diff --git a/t/lib/indirect/TestThreads.pm b/t/lib/indirect/TestThreads.pm index 1290340..da805c0 100644 --- a/t/lib/indirect/TestThreads.pm +++ b/t/lib/indirect/TestThreads.pm @@ -5,38 +5,22 @@ use warnings; use Config qw<%Config>; -sub skipall { - my ($msg) = @_; - require Test::Leaner; - Test::Leaner::plan(skip_all => $msg); -} - -sub diag { - require Test::Leaner; - Test::Leaner::diag(@_); -} +use VPIT::TestHelpers; sub import { shift; require indirect; - skipall 'This indirect isn\'t thread safe' unless indirect::I_THREADSAFE(); + skip_all 'This indirect isn\'t thread safe' unless indirect::I_THREADSAFE(); my $force = $ENV{PERL_INDIRECT_TEST_THREADS} ? 1 : !1; - skipall 'This perl wasn\'t built to support threads' + skip_all 'This perl wasn\'t built to support threads' unless $Config{useithreads}; - skipall 'perl 5.13.4 required to test thread safety' + skip_all 'perl 5.13.4 required to test thread safety' unless $force or "$]" >= 5.013004; - my $t_v = $force ? '0' : '1.67'; - my $has_threads = do { - local $@; - eval "use threads $t_v; 1"; - }; - skipall "threads $t_v required to test thread safety" unless $has_threads; - - defined and diag "Using threads $_" for $threads::VERSION; + load_or_skip_all('threads', $force ? '0' : '1.67', [ ]); my %exports = ( spawn => \&spawn,