Fixed race condtions and deadlocks in interaction with
[p5sagit/p5-mst-13.2.git] / ext / threads / shared / t / hv_refs.t
1 BEGIN {
2 #    chdir 't' if -d 't';
3 #    push @INC ,'../lib';
4     require Config; import Config;
5     unless ($Config{'useithreads'}) {
6         print "1..0 # Skip: no useithreads\n";
7         exit 0;
8     }
9 }
10
11
12 sub ok {
13     my ($id, $ok, $name) = @_;
14
15     # You have to do it this way or VMS will get confused.
16     print $ok ? "ok $id - $name\n" : "not ok $id - $name\n";
17
18     printf "# Failed test at line %d\n", (caller)[2] unless $ok;
19
20     return $ok;
21 }
22
23 sub skip {
24     my ($id, $ok, $name) = @_;
25     print "ok $id # skip _thrcnt - $name \n";
26 }
27
28 use ExtUtils::testlib;
29 use strict;
30 BEGIN { print "1..17\n" };
31 use threads;
32 use threads::shared qw(:DEFAULT _thrcnt _refcnt _id);
33 ok(1,1,"loaded");
34 my $foo;
35 share($foo);
36 my %foo;
37 share(%foo);
38 $foo{"foo"} = \$foo;
39 ok(2, ${$foo{foo}} == undef, "Check deref");
40 $foo = "test";
41 ok(3, ${$foo{foo}} eq "test", "Check deref after assign");
42 threads->create(sub{${$foo{foo}} = "test2";})->join();
43 ok(4, $foo eq "test2", "Check after assign in another thread");
44 skip(5, _thrcnt($foo) == 2, "Check refcount");
45 my $bar = delete($foo{foo});
46 ok(6, $$bar eq "test2", "check delete");
47 skip(7, _thrcnt($foo) == 1, "Check refcount after delete");
48 threads->create( sub {
49    my $test;
50    share($test);
51    $test = "thread3";
52    $foo{test} = \$test;
53    })->join();
54 ok(8, ${$foo{test}} eq "thread3", "Check reference created in another thread");
55 my $gg = $foo{test};
56 $$gg = "test";
57 ok(9, ${$foo{test}} eq "test", "Check reference");
58 skip(10, _thrcnt($gg) == 2, "Check refcount");
59 my $gg2 = delete($foo{test});
60 skip(11, _thrcnt($gg) == 1, "Check refcount");
61 ok(12, _id($gg) == _id($gg2),
62        sprintf("Check we get the same thing (%x vs %x)",
63        _id($$gg),_id($$gg2)));
64 ok(13, $$gg eq $$gg2, "And check the values are the same");
65 ok(14, keys %foo == 0, "And make sure we realy have deleted the values");
66 {
67     my (%hash1, %hash2);
68     share(%hash1);
69     share(%hash2);
70     $hash1{hash} = \%hash2;
71     $hash2{"bar"} = "foo";
72     ok(15, $hash1{hash}->{bar} eq "foo", "Check hash references work");
73     threads->create(sub { $hash2{"bar2"} = "foo2"})->join();
74     ok(16, $hash1{hash}->{bar2} eq "foo2", "Check hash references work");
75     threads->create(sub { my (%hash3); share(%hash3); $hash2{hash} = \%hash3; $hash3{"thread"} = "yes"})->join();
76     ok(17, $hash1{hash}->{hash}->{thread} eq "yes", "Check hash created in another thread");
77 }
78