The thread warnings aren't quite yet working as planned.
[p5sagit/p5-mst-13.2.git] / ext / threads / shared / t / hv_simple.t
CommitLineData
13c1b207 1use warnings;
49485a95 2
3BEGIN {
4# chdir 't' if -d 't';
5# push @INC ,'../lib';
6 require Config; import Config;
7 unless ($Config{'useithreads'}) {
8 print "1..0 # Skip: no useithreads\n";
9 exit 0;
10 }
11}
12
13
14sub ok {
15 my ($id, $ok, $name) = @_;
16
13c1b207 17 $name = '' unless defined $name;
49485a95 18 # You have to do it this way or VMS will get confused.
19 print $ok ? "ok $id - $name\n" : "not ok $id - $name\n";
20
21 printf "# Failed test at line %d\n", (caller)[2] unless $ok;
22
23 return $ok;
24}
25
6b85e4fe 26sub skip {
27 my ($id, $ok, $name) = @_;
28 print "ok $id # skip _thrcnt - $name \n";
29}
30
49485a95 31
32
33use ExtUtils::testlib;
34use strict;
35BEGIN { print "1..21\n" };
36use threads;
37use threads::shared;
38ok(1,1,"loaded");
39my %hash;
40share(%hash);
41$hash{"foo"} = "bar";
42ok(2,$hash{"foo"} eq "bar","Check hash get");
43threads->create(sub { $hash{"bar"} = "thread1"})->join();
44threads->create(sub { ok(3,$hash{"bar"} eq "thread1", "Check thread get and write")})->join();
45{
46 my $foo = delete($hash{"bar"});
47 ok(4, $foo eq "thread1", "Check delete, want 'thread1' got '$foo'");
48 $foo = delete($hash{"bar"});
13c1b207 49 ok(5, !defined $foo, "Check delete on empty value");
49485a95 50}
51ok(6, keys %hash == 1, "Check keys");
52$hash{"1"} = 1;
53$hash{"2"} = 2;
54$hash{"3"} = 3;
55ok(7, keys %hash == 4, "Check keys");
13c1b207 56ok(8, exists($hash{"1"}), "Exist on existing key");
57ok(9, !exists($hash{"4"}), "Exists on non existing key");
49485a95 58my %seen;
59foreach my $key ( keys %hash) {
60 $seen{$key}++;
61}
62ok(10, $seen{1} == 1, "Keys..");
63ok(11, $seen{2} == 1, "Keys..");
64ok(12, $seen{3} == 1, "Keys..");
65ok(13, $seen{"foo"} == 1, "Keys..");
66threads->create(sub { %hash = () })->join();
67ok(14, keys %hash == 0, "Check clear");
6b85e4fe 68skip(15, threads::shared::_thrcnt(%hash) == 1, "thrcnt");
69threads->create(sub { skip(16, threads::shared::_thrcnt(%hash) == 2, "thrcnt is up")})->join();
70skip(17, threads::shared::_thrcnt(%hash) == 1, "thrcnt is down");
6d56dc1c 71{
49485a95 72 my $test;
73 my $test2;
74 share($test);
75 $test = \%hash;
76 $test2 = \%hash;
6b85e4fe 77 skip(18, threads::shared::_thrcnt(%hash) == 2, "thrcnt is up on shared reference");
49485a95 78 $test = "bar";
6b85e4fe 79 skip(19 , threads::shared::_thrcnt(%hash) == 1, "thrcnt is down when shared reference is dropped");
49485a95 80 $test = $test2;
6b85e4fe 81 skip(20, threads::shared::_thrcnt(%hash) == 2, "thrcnt is up on shared reference");
49485a95 82}
6b85e4fe 83skip(21 , threads::shared::_thrcnt(%hash) == 1, "thrcnt is down when shared reference is killed");