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