two test failures
[p5sagit/p5-mst-13.2.git] / ext / threads / t / basic.t
CommitLineData
47ba8780 1
a54396a0 2
3#
4# The reason this does not use a Test module is that
5# they mess up test numbers between threads
6#
7# And even when that will be fixed, this is a basic
8# test and should not rely on shared variables
9#
10#
47ba8780 11#########################
12
a54396a0 13
83ebf7e2 14BEGIN {
15 chdir 't' if -d 't';
16 @INC = '../lib';
17 require Config; import Config;
18 unless ($Config{'useithreads'}) {
19 print "1..0 # Skip: no useithreads\n";
20 exit 0;
21 }
22}
23
47ba8780 24use ExtUtils::testlib;
47ba8780 25use strict;
a54396a0 26BEGIN { print "1..12\n" };
47ba8780 27use threads;
28
29
a54396a0 30
31print "ok 1\n";
32
47ba8780 33
34#########################
35
36# Insert your test code below, the Test module is use()ed here so read
37# its man page ( perldoc Test ) for help writing this test script.
38#my $bar;
a54396a0 39sub ok {
40 my ($id, $ok, $name) = @_;
41
42 # You have to do it this way or VMS will get confused.
43 print $ok ? "ok $id - $name\n" : "not ok $id - $name\n";
44
45 printf "# Failed test at line %d\n", (caller)[2] unless $ok;
46
47 return $ok;
48}
49
50
47ba8780 51
47ba8780 52
53#test passing of simple argument
a54396a0 54my $thread = threads->create(sub { ok(2, 'bar' eq $_[0]),"" },"bar");
47ba8780 55$thread->join();
a54396a0 56
47ba8780 57
58#test passing of complex argument
59
a54396a0 60$thread = threads->create(sub { ok(3, 'bar' eq $_[0]->[0]->{foo})},[{foo => 'bar'}]);
47ba8780 61
62$thread->join();
a54396a0 63
47ba8780 64
65#test execuion of normal sub
a54396a0 66sub bar { ok(4,shift() == 1,"") }
47ba8780 67threads->create(\&bar,1)->join();
a54396a0 68
47ba8780 69
70#check Config
a54396a0 71ok(5, 1 == $Config::threads,"");
47ba8780 72
73#test trying to detach thread
74
a54396a0 75my $thread1 = threads->create(sub {ok(6,1,"")});
47ba8780 76
77$thread1->detach();
47ba8780 78sleep 1;
a54396a0 79ok(7,1,"");
47ba8780 80#create nested threads
81unless($^O eq 'MSWin32') {
82 my $thread3 = threads->create(sub { threads->create(sub {})})->join();
47ba8780 83}
a54396a0 84
47ba8780 85
86my @threads;
87my $i;
88unless($^O eq 'MSWin32') {
89for(1..25) {
90 push @threads, threads->create(sub { for(1..100000) { my $i } threads->create(sub { sleep 2})->join() });
91}
92foreach my $thread (@threads) {
93 $thread->join();
94}
95}
a54396a0 96ok(8,1,"");
47ba8780 97threads->create(sub {
98 my $self = threads->self();
a54396a0 99 ok(9,$self->tid() == 57,"");
47ba8780 100})->join();
47ba8780 101threads->create(sub {
102 my $self = threads->self();
a54396a0 103 ok(10,$self->tid() == 58,"");
47ba8780 104})->join();
47ba8780 105
106#check support for threads->self() in main thread
a54396a0 107ok(11, 0 == threads->self->tid(),"");
108ok(12, 0 == threads->tid(),"Check so that tid for threads work for current tid");
47ba8780 109
110
111
112
113
114
115
116
117
118