X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVPIT-TestHelpers.git;a=blobdiff_plain;f=lib%2FVPIT%2FTestHelpers.pm;h=c57826a1cab46cb246931b36af0a5e67d0bda138;hp=68f11f0092e8b89cee24aa1e8bcb1473d39c79b9;hb=6fed7e00bfc9173f7282c4c7467a44c98df44427;hpb=4598e3669eee23f67bac4a1dc541740b1447591b diff --git a/lib/VPIT/TestHelpers.pm b/lib/VPIT/TestHelpers.pm index 68f11f0..c57826a 100644 --- a/lib/VPIT/TestHelpers.pm +++ b/lib/VPIT/TestHelpers.pm @@ -24,7 +24,8 @@ my %default_exports = ( ); my %features = ( - usleep => \&init_usleep, + threads => \&init_threads, + usleep => \&init_usleep, ); sub import { @@ -155,6 +156,30 @@ sub run_perl { system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code; } +sub init_threads { + my ($pkg, $threadsafe, $force_var) = @_; + + $pkg = 'package' unless defined $pkg; + skip_all "This $pkg isn't thread safe" if defined $threadsafe and !$threadsafe; + + skip_all 'This perl wasn\'t built to support threads' + unless $Config::Config{useithreads}; + + $force_var = 'PERL_FORCE_TEST_THREADS' unless defined $force_var; + my $force = $ENV{$force_var} ? 1 : !1; + skip_all 'perl 5.13.4 required to test thread safety' + unless $force or "$]" >= 5.013_004; + + load_or_skip_all 'threads', $force ? '0' : '1.67', [ ]; + load_or_skip_all 'threads::shared', $force ? '0' : '1.14', [ ]; + + require Test::Leaner; + + diag "Threads testing forced by \$ENV{$force_var}" if $force; + + return spawn => \&spawn; +} + sub init_usleep { my $usleep; @@ -173,6 +198,18 @@ sub init_usleep { return usleep => $usleep; } +sub spawn { + local $@; + my @diag; + my $thread = eval { + local $SIG{__WARN__} = sub { push @diag, "Thread creation warning: @_" }; + threads->create(@_); + }; + push @diag, "Thread creation error: $@" if $@; + diag @diag; + return $thread ? $thread : (); +} + package VPIT::TestHelpers::Guard; sub new {