threads - formatting [REVISED]
[p5sagit/p5-mst-13.2.git] / ext / threads / t / stress_re.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
16 use ExtUtils::testlib;
17
18 sub ok {
19     my ($id, $ok, $name) = @_;
20
21     # You have to do it this way or VMS will get confused.
22     if ($ok) {
23         print("ok $id - $name\n");
24     } else {
25         print("not ok $id - $name\n");
26         printf("# Failed test at line %d\n", (caller)[2]);
27     }
28
29     return ($ok);
30 }
31
32 BEGIN {
33     $| = 1;
34     print("1..63\n");   ### Number of tests that will be run ###
35 };
36
37 use threads;
38 ok(1, 1, 'Loaded');
39
40 ### Start of Testing ###
41
42 sub test9 {
43     my $s = "abcd" x (1000 + $_[0]);
44     my $t = '';
45     while ($s =~ /(.)/g) { $t .= $1 }
46     print "not ok $_[0]\n" if $s ne $t;
47 }
48 my @threads;
49 for (2..32) {
50     ok($_, 1, "Multiple thread test");
51     push(@threads, threads->create('test9',$_));
52 }
53
54 my $i = 33;
55 for (@threads) {
56     $_->join;
57     ok($i++, 1, "Thread joined");
58 }
59
60 # EOF