ext/B/B/Xref.pm adding "our" recognition
[p5sagit/p5-mst-13.2.git] / ext / threads / shared / t / sv_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 use Devel::Peek;
24 use ExtUtils::testlib;
25 use strict;
26 BEGIN { print "1..10\n" };
27 use threads;
28 use threads::shared;
29 ok(1,1,"loaded");
30
31 my $foo;
32 my $bar = "foo";
33 share($foo);
34 eval {
35 $foo = \$bar;
36 };
37 ok(2,my $temp1 = $@ =~/You cannot assign a non shared reference to a shared scalar/, "Check that the warning message is correct");
38 share($bar);
39 $foo = \$bar;
40 ok(3, $temp1 = $foo =~/SCALAR/, "Check that is a ref");
41 ok(4, $$foo eq "foo", "Check that it points to the correct value");
42 $bar = "yeah";
43 ok(5, $$foo eq "yeah", "Check that assignment works");
44 $$foo = "yeah2";
45 ok(6, $$foo eq "yeah2", "Check that deref assignment works");
46 threads->create(sub {$bar = "yeah3"})->join();
47 ok(7, $$foo eq "yeah3", "Check that other thread assignemtn works");
48 threads->create(sub {$foo = "artur"})->join();
49 ok(8, $foo eq "artur", "Check that uncopupling the ref works");
50 my $baz;
51 share($baz);
52 $baz = "original";
53 $bar = \$baz;
54 $foo = \$bar;
55 ok(9,$$$foo eq 'original', "Check reference chain");
56 my($t1,$t2);
57 share($t1);
58 share($t2);
59 $t2 = "text";
60 $t1 = \$t2;
61 threads->create(sub { $t1 = "bar" })->join();
62 ok(10,$t1 eq 'bar',"Check that assign to a ROK works");