threads 1.28
[p5sagit/p5-mst-13.2.git] / ext / threads / t / stress_string.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 $i = shift;
44     for (1..500000) { $i++ };
45 }
46 my @threads;
47 for (2..32) {
48     ok($_, 1, "Multiple thread test");
49     push(@threads, threads->create('test9', $_));
50 }
51
52 my $i = 33;
53 for (@threads) {
54     $_->join;
55     ok($i++, 1, "Thread joined");
56 }
57
58 # EOF