]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/lib/Variable/Magic/TestThreads.pm
Port thread tests to the new VPIT::TestHelpers interface
[perl/modules/Variable-Magic.git] / t / lib / Variable / Magic / TestThreads.pm
diff --git a/t/lib/Variable/Magic/TestThreads.pm b/t/lib/Variable/Magic/TestThreads.pm
deleted file mode 100644 (file)
index e67ea3f..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-package Variable::Magic::TestThreads;
-
-use strict;
-use warnings;
-
-use Config qw<%Config>;
-
-use Variable::Magic qw<VMG_THREADSAFE>;
-
-use VPIT::TestHelpers;
-
-sub diag {
- require Test::More;
- Test::More::diag($_) for @_;
-}
-
-sub import {
- shift;
-
- skip_all 'This Variable::Magic isn\'t thread safe' unless VMG_THREADSAFE;
-
- my $force = $ENV{PERL_VARIABLE_MAGIC_TEST_THREADS} ? 1 : !1;
- skip_all 'This perl wasn\'t built to support threads'
-                                                    unless $Config{useithreads};
- 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', [ ]);
-
- my %exports = (
-  spawn => \&spawn,
- );
-
- my $pkg = caller;
- while (my ($name, $code) = each %exports) {
-  no strict 'refs';
-  *{$pkg.'::'.$name} = $code;
- }
-}
-
-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) if @diag;
- return $thread ? $thread : ();
-}
-
-1;