source: trunk/essentials/dev-lang/perl/ext/threads/shared/t/hv_refs.t

Last change on this file was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 2.7 KB
Line 
1use warnings;
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
17 $name = '' unless defined $name;
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
26sub skip {
27 my ($id, $ok, $name) = @_;
28 print "ok $id # skip _thrcnt - $name \n";
29}
30
31use ExtUtils::testlib;
32use strict;
33BEGIN { print "1..17\n" };
34use threads;
35use threads::shared;
36ok(1,1,"loaded");
37my $foo;
38share($foo);
39my %foo;
40share(%foo);
41$foo{"foo"} = \$foo;
42ok(2, !defined ${$foo{foo}}, "Check deref");
43$foo = "test";
44ok(3, ${$foo{foo}} eq "test", "Check deref after assign");
45threads->create(sub{${$foo{foo}} = "test2";})->join();
46ok(4, $foo eq "test2", "Check after assign in another thread");
47my $bar = delete($foo{foo});
48ok(5, $$bar eq "test2", "check delete");
49threads->create( sub {
50 my $test;
51 share($test);
52 $test = "thread3";
53 $foo{test} = \$test;
54 })->join();
55ok(6, ${$foo{test}} eq "thread3", "Check reference created in another thread");
56my $gg = $foo{test};
57$$gg = "test";
58ok(7, ${$foo{test}} eq "test", "Check reference");
59my $gg2 = delete($foo{test});
60ok(8, threads::shared::_id($$gg) == threads::shared::_id($$gg2),
61 sprintf("Check we get the same thing (%x vs %x)",
62 threads::shared::_id($$gg),threads::shared::_id($$gg2)));
63ok(9, $$gg eq $$gg2, "And check the values are the same");
64ok(10, keys %foo == 0, "And make sure we realy have deleted the values");
65{
66 my (%hash1, %hash2);
67 share(%hash1);
68 share(%hash2);
69 $hash1{hash} = \%hash2;
70 $hash2{"bar"} = "foo";
71 ok(11, $hash1{hash}->{bar} eq "foo", "Check hash references work");
72 threads->create(sub { $hash2{"bar2"} = "foo2"})->join();
73 ok(12, $hash1{hash}->{bar2} eq "foo2", "Check hash references work");
74 threads->create(sub { my (%hash3); share(%hash3); $hash2{hash} = \%hash3; $hash3{"thread"} = "yes"})->join();
75 ok(13, $hash1{hash}->{hash}->{thread} eq "yes", "Check hash created in another thread");
76}
77
78{
79 my $h = {a=>14};
80 my $r = \$h->{a};
81 share($r);
82 lock($r);
83 lock($h->{a});
84 ok(14, 1, "lock on helems now work, this was bug 10045");
85
86}
87{
88 my $object : shared = &share({});
89 threads->new(sub {
90 bless $object, 'test1';
91 })->join;
92 ok(15, ref($object) eq 'test1', "blessing does work");
93 my %test = (object => $object);
94 ok(16, ref($test{object}) eq 'test1', "and some more work");
95 bless $object, 'test2';
96 ok(17, ref($test{object}) eq 'test2', "reblessing works!");
97}
98
Note: See TracBrowser for help on using the repository browser.