Two modules in ext/ have dependencies that are post-miniperl.
[p5sagit/p5-mst-13.2.git] / ext / threads / t / list.t
CommitLineData
0f1612a7 1use strict;
2use warnings;
6794f985 3
4BEGIN {
0f1612a7 5 if ($ENV{'PERL_CORE'}){
6 chdir 't';
7 unshift @INC, '../lib';
8 }
9 use Config;
6794f985 10 unless ($Config{'useithreads'}) {
11 print "1..0 # Skip: no useithreads\n";
12 exit 0;
13 }
14}
15
16use ExtUtils::testlib;
17
6794f985 18
19
20BEGIN { $| = 1; print "1..8\n" };
74bf223e 21use threads;
6794f985 22
23
24
74bf223e 25print "ok 1\n";
6794f985 26
27
74bf223e 28#########################
29sub ok {
30 my ($id, $ok, $name) = @_;
6794f985 31
74bf223e 32 # You have to do it this way or VMS will get confused.
33 print $ok ? "ok $id - $name\n" : "not ok $id - $name\n";
6794f985 34
74bf223e 35 printf "# Failed test at line %d\n", (caller)[2] unless $ok;
6794f985 36
74bf223e 37 return $ok;
38}
6794f985 39
a31a65c0 40ok(2, scalar @{[threads->list]} == 0,'');
6794f985 41
42
6794f985 43
74bf223e 44threads->create(sub {})->join();
a31a65c0 45ok(3, scalar @{[threads->list]} == 0,'');
74bf223e 46
47my $thread = threads->create(sub {});
a31a65c0 48ok(4, scalar @{[threads->list]} == 1,'');
74bf223e 49$thread->join();
a31a65c0 50ok(5, scalar @{[threads->list]} == 0,'');
74bf223e 51
a31a65c0 52$thread = threads->create(sub { ok(6, threads->self == (threads->list)[0],'')});
da32f63e 53threads->yield; # help out non-preemptive thread implementations
74bf223e 54sleep 1;
a31a65c0 55ok(7, $thread == (threads->list)[0],'');
74bf223e 56$thread->join();
a31a65c0 57ok(8, scalar @{[threads->list]} == 0,'');