Created
September 24, 2014 15:38
-
-
Save exodist/8d530dd8b8b0ff74a789 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
BEGIN { | |
if( $ENV{PERL_CORE} ) { | |
chdir 't'; | |
@INC = '../lib'; | |
} | |
} | |
use Config; | |
BEGIN { | |
if ($] == 5.010000) { | |
print "1..0 # Threads are broken on 5.10.0\n"; | |
exit 0; | |
} | |
my $works = 1; | |
$works &&= $] >= 5.008001; | |
$works &&= $Config{'useithreads'}; | |
$works &&= eval { require threads; 'threads'->import; 1 }; | |
unless ($works) { | |
print "1..0 # Skip no working threads\n"; | |
exit 0; | |
} | |
# unless ( $ENV{AUTHOR_TESTING} ) { | |
# print "1..0 # Skip many perls have broken threads. Enable with AUTHOR_TESTING.\n"; | |
# exit 0; | |
# } | |
} | |
use Test::More; | |
ok(1, "outside before"); | |
my $t = threads->create( | |
sub { | |
ok(1, 'in thread1'); | |
ok(1, 'in thread2'); | |
} | |
); | |
ok(1, "outside after"); | |
$t->join; | |
END { | |
print "XXX: " . Test::Builder->new->is_passing . "\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment