The ext/Cwd/Cwd.xs part of...
[p5sagit/p5-mst-13.2.git] / ext / threads / t / thread.t
1 use strict;
2 use warnings;
3
4 BEGIN {
5     if ($ENV{'PERL_CORE'}){
6         chdir 't';
7         unshift @INC, '../lib';
8     }
9     use Config;
10     if (! $Config{'useithreads'}) {
11         print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
12         exit(0);
13     }
14
15     require($ENV{PERL_CORE} ? "./test.pl" : "./t/test.pl");
16 }
17
18 use ExtUtils::testlib;
19
20 use threads;
21
22 BEGIN {
23     eval {
24         require threads::shared;
25         threads::shared->import();
26     };
27     if ($@ || ! $threads::shared::threads_shared) {
28         print("1..0 # Skip: threads::shared not available\n");
29         exit(0);
30     }
31
32     $| = 1;
33     print("1..34\n");   ### Number of tests that will be run ###
34 };
35
36 print("ok 1 - Loaded\n");
37
38 ### Start of Testing ###
39
40 sub content {
41     print shift;
42     return shift;
43 }
44 {
45     my $t = threads->create(\&content, "ok 2\n", "ok 3\n", 1..1000);
46     print $t->join();
47 }
48 {
49     my $lock : shared;
50     my $t;
51     {
52         lock($lock);
53         $t = threads->create(sub { lock($lock); print "ok 5\n"});
54         print "ok 4\n";
55     }
56     $t->join();
57 }
58
59 sub dorecurse {
60     my $val = shift;
61     my $ret;
62     print $val;
63     if(@_) {
64         $ret = threads->create(\&dorecurse, @_);
65         $ret->join;
66     }
67 }
68 {
69     my $t = threads->create(\&dorecurse, map { "ok $_\n" } 6..10);
70     $t->join();
71 }
72
73 {
74     # test that sleep lets other thread run
75     my $t = threads->create(\&dorecurse, "ok 11\n");
76     threads->yield; # help out non-preemptive thread implementations
77     sleep 1;
78     print "ok 12\n";
79     $t->join();
80 }
81 {
82     my $lock : shared;
83     sub islocked {
84         lock($lock);
85         my $val = shift;
86         my $ret;
87         print $val;
88         if (@_) {
89             $ret = threads->create(\&islocked, shift);
90         }
91         return $ret;
92     }
93 my $t = threads->create(\&islocked, "ok 13\n", "ok 14\n");
94 $t->join->join;
95 }
96
97
98
99 sub testsprintf {
100     my $testno = shift;
101     my $same = sprintf( "%0.f", $testno);
102     return $testno eq $same;
103 }
104
105 sub threaded {
106     my ($string, $string_end) = @_;
107
108   # Do the match, saving the output in appropriate variables
109     $string =~ /(.*)(is)(.*)/;
110   # Yield control, allowing the other thread to fill in the match variables
111     threads->yield();
112   # Examine the match variable contents; on broken perls this fails
113     return $3 eq $string_end;
114 }
115
116
117
118     curr_test(15);
119
120     my $thr1 = threads->create(\&testsprintf, 15);
121     my $thr2 = threads->create(\&testsprintf, 16);
122     
123     my $short = "This is a long string that goes on and on.";
124     my $shorte = " a long string that goes on and on.";
125     my $long  = "This is short.";
126     my $longe  = " short.";
127     my $foo = "This is bar bar bar.";
128     my $fooe = " bar bar bar.";
129     my $thr3 = new threads \&threaded, $short, $shorte;
130     my $thr4 = new threads \&threaded, $long, $longe;
131     my $thr5 = new threads \&testsprintf, 19;
132     my $thr6 = new threads \&testsprintf, 20;
133     my $thr7 = new threads \&threaded, $foo, $fooe;
134
135     ok($thr1->join());
136     ok($thr2->join());
137     ok($thr3->join());
138     ok($thr4->join());
139     ok($thr5->join());
140     ok($thr6->join());
141     ok($thr7->join());
142 }
143
144 # test that 'yield' is importable
145
146 package Test1;
147
148 use threads 'yield';
149 yield;
150 main::ok(1);
151
152 package main;
153
154
155 # test async
156
157 {
158     my $th = async {return 1 };
159     ok($th);
160     ok($th->join());
161 }
162 {
163     # There is a miniscule chance this test case may falsely fail
164     # since it tests using rand()
165     my %rand : shared;
166     rand(10);
167     threads->create( sub { $rand{int(rand(10000000000))}++ } ) foreach 1..25;
168     $_->join foreach threads->list;
169     ok((keys %rand >= 23), "Check that rand() is randomized in new threads");
170 }
171
172 # bugid #24165
173
174 run_perl(prog => 'use threads 1.67;' .
175                  'sub a{threads->create(shift)} $t = a sub{};' .
176                  '$t->tid; $t->join; $t->tid',
177          nolib => ($ENV{PERL_CORE}) ? 0 : 1,
178          switches => ($ENV{PERL_CORE}) ? [] : [ '-Mblib' ]);
179 is($?, 0, 'coredump in global destruction');
180
181 # Attempt to free unreferenced scalar...
182 fresh_perl_is(<<'EOI', 'ok', { }, 'thread sub via scalar');
183     use threads;
184     my $test = sub {};
185     threads->create($test)->join();
186     print 'ok';
187 EOI
188
189 # Attempt to free unreferenced scalar...
190 fresh_perl_is(<<'EOI', 'ok', { }, 'thread sub via $_[0]');
191     use threads;
192     sub thr { threads->new($_[0]); }
193     thr(sub { })->join;
194     print 'ok';
195 EOI
196
197 # [perl #45053]  Memory corruption from eval return in void context
198 fresh_perl_is(<<'EOI', 'ok', { }, 'void eval return');
199     use threads;
200     threads->create(sub { eval '1' });
201     $_->join() for threads->list;
202     print 'ok';
203 EOI
204
205 # test CLONE_SKIP() functionality
206 SKIP: {
207     skip('CLONE_SKIP not implemented in Perl < 5.8.7', 5) if ($] < 5.008007);
208
209     my %c : shared;
210     my %d : shared;
211
212     # ---
213
214     package A;
215     sub CLONE_SKIP { $c{"A-$_[0]"}++; 1; }
216     sub DESTROY    { $d{"A-". ref $_[0]}++ }
217
218     package A1;
219     our @ISA = qw(A);
220     sub CLONE_SKIP { $c{"A1-$_[0]"}++; 1; }
221     sub DESTROY    { $d{"A1-". ref $_[0]}++ }
222
223     package A2;
224     our @ISA = qw(A1);
225
226     # ---
227
228     package B;
229     sub CLONE_SKIP { $c{"B-$_[0]"}++; 0; }
230     sub DESTROY    { $d{"B-" . ref $_[0]}++ }
231
232     package B1;
233     our @ISA = qw(B);
234     sub CLONE_SKIP { $c{"B1-$_[0]"}++; 1; }
235     sub DESTROY    { $d{"B1-" . ref $_[0]}++ }
236
237     package B2;
238     our @ISA = qw(B1);
239
240     # ---
241
242     package C;
243     sub CLONE_SKIP { $c{"C-$_[0]"}++; 1; }
244     sub DESTROY    { $d{"C-" . ref $_[0]}++ }
245
246     package C1;
247     our @ISA = qw(C);
248     sub CLONE_SKIP { $c{"C1-$_[0]"}++; 0; }
249     sub DESTROY    { $d{"C1-" . ref $_[0]}++ }
250
251     package C2;
252     our @ISA = qw(C1);
253
254     # ---
255
256     package D;
257     sub DESTROY    { $d{"D-" . ref $_[0]}++ }
258
259     package D1;
260     our @ISA = qw(D);
261
262     package main;
263
264     {
265         my @objs;
266         for my $class (qw(A A1 A2 B B1 B2 C C1 C2 D D1)) {
267             push @objs, bless [], $class;
268         }
269
270         sub f {
271             my $depth = shift;
272             my $cloned = ""; # XXX due to recursion, doesn't get initialized
273             $cloned .= "$_" =~ /ARRAY/ ? '1' : '0' for @objs;
274             is($cloned, ($depth ? '00010001111' : '11111111111'),
275                 "objs clone skip at depth $depth");
276             threads->create( \&f, $depth+1)->join if $depth < 2;
277             @objs = ();
278         }
279         f(0);
280     }
281
282     curr_test(curr_test()+2);
283     ok(eq_hash(\%c,
284         {
285             qw(
286                 A-A     2
287                 A1-A1   2
288                 A1-A2   2
289                 B-B     2
290                 B1-B1   2
291                 B1-B2   2
292                 C-C     2
293                 C1-C1   2
294                 C1-C2   2
295             )
296         }),
297         "counts of calls to CLONE_SKIP");
298     ok(eq_hash(\%d,
299         {
300             qw(
301                 A-A     1
302                 A1-A1   1
303                 A1-A2   1
304                 B-B     3
305                 B1-B1   1
306                 B1-B2   1
307                 C-C     1
308                 C1-C1   3
309                 C1-C2   3
310                 D-D     3
311                 D-D1    3
312             )
313         }),
314         "counts of calls to DESTROY");
315 }
316
317 # EOF