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