thread::shared nearly working again - remaining issue
[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;
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, threads::shared::_thrcnt($foo) == 2, "Check refcount");
45 my $bar = delete($foo{foo});
46 ok(6, $$bar eq "test2", "check delete");
47 skip(7, threads::shared::_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, threads::shared::_thrcnt($gg) == 2, "Check refcount");
59 my $gg2 = delete($foo{test});
60 skip(11, threads::shared::_thrcnt($gg) == 1, "Check refcount");
61 ok(12, $gg == $gg2, "Check we get the same reference ($gg == $gg2)");
62 ok(13, $$gg eq $$gg2, "And check the values are the same");
63 ok(14, keys %foo == 0, "And make sure we realy have deleted the values");
64 {
65     my (%hash1, %hash2);
66     share(%hash1);
67     share(%hash2);
68     $hash1{hash} = \%hash2;
69     $hash2{"bar"} = "foo";
70     ok(15, $hash1{hash}->{bar} eq "foo", "Check hash references work");
71     threads->create(sub { $hash2{"bar2"} = "foo2"})->join();
72     ok(16, $hash1{hash}->{bar2} eq "foo2", "Check hash references work");
73     threads->create(sub { my (%hash3); share(%hash3); $hash2{hash} = \%hash3; $hash3{"thread"} = "yes"})->join();
74     ok(17, $hash1{hash}->{hash}->{thread} eq "yes", "Check hash created in another thread");
75 }
76