t/op/sort.t using test.pl
[p5sagit/p5-mst-13.2.git] / ext / threads / t / stress_string.t
CommitLineData
0f1612a7 1use strict;
2use warnings;
3
1826b481 4BEGIN {
0f1612a7 5 if ($ENV{'PERL_CORE'}){
6 chdir 't';
7 unshift @INC, '../lib';
8 }
9 use Config;
1826b481 10 unless ($Config{'useithreads'}) {
11 print "1..0 # Skip: no useithreads\n";
12 exit 0;
13 }
14}
15
16use ExtUtils::testlib;
0f1612a7 17
1826b481 18BEGIN { print "1..64\n" };
19use threads;
20
21
22print "ok 1\n";
23
24
25
26
27sub ok {
28 my ($id, $ok, $name) = @_;
29
30 # You have to do it this way or VMS will get confused.
31 print $ok ? "ok $id - $name\n" : "not ok $id - $name\n";
32
33 printf "# Failed test at line %d\n", (caller)[2] unless $ok;
34
35 return $ok;
36}
37
38
39ok(2,1,"");
40
41sub test9 {
42 my $i = shift;
3dbf27b4 43 for(1..500000) { $i++};
1826b481 44}
45my @threads;
46for(3..33) {
9ec9d1e2 47 ok($_,1,"Multiple thread test");
1826b481 48 push @threads ,threads->create('test9',$_);
49}
3dbf27b4 50
1826b481 51my $i = 34;
52for(@threads) {
53 $_->join;
54 ok($i++,1,"Thread joined");
55}
56