diff options
Diffstat (limited to 'ext/threads/t/stress_cv.t')
-rw-r--r-- | ext/threads/t/stress_cv.t | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/ext/threads/t/stress_cv.t b/ext/threads/t/stress_cv.t new file mode 100644 index 0000000000..eb2bab1a98 --- /dev/null +++ b/ext/threads/t/stress_cv.t @@ -0,0 +1,48 @@ +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; + require Config; import Config; + unless ($Config{'useithreads'}) { + print "1..0 # Skip: no useithreads\n"; + exit 0; + } +} + +use ExtUtils::testlib; +use strict; +BEGIN { print "1..64\n" }; +use threads; + + +print "ok 1\n"; + + + + +sub ok { + my ($id, $ok, $name) = @_; + + # You have to do it this way or VMS will get confused. + print $ok ? "ok $id - $name\n" : "not ok $id - $name\n"; + + printf "# Failed test at line %d\n", (caller)[2] unless $ok; + + return $ok; +} + + +ok(2,1,""); + + +my @threads; +for(3..33) { + ok($_,1,"Multiple thread test"); + push @threads ,threads->create(sub { my $i = shift; for(1..500000) { $i++}},$_); +} + +my $i = 34; +for(@threads) { + $_->join; + ok($i++,1,"Thread joined"); +} + |