Eliminate most of the UTF-8 black smoke by skipping optree tests when
[p5sagit/p5-mst-13.2.git] / ext / threads / t / problems.t
CommitLineData
0f1612a7 1use strict;
2use warnings;
da46a8d0 3
4BEGIN {
0f1612a7 5 if ($ENV{'PERL_CORE'}){
6 chdir 't';
7 unshift @INC, '../lib';
8 }
9 use Config;
fc04eb16 10 if (! $Config{'useithreads'}) {
11 print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
12 exit(0);
da46a8d0 13 }
14}
15
0f1612a7 16use ExtUtils::testlib;
17
18BEGIN {
19 $| = 1;
20 if ($] == 5.008) {
f2cba68d 21 print("1..11\n"); ### Number of tests that will be run ###
0f1612a7 22 } else {
23 print("1..15\n"); ### Number of tests that will be run ###
24 }
25};
26
da46a8d0 27use threads;
28use threads::shared;
0f1612a7 29print("ok 1 - Loaded\n");
30
31### Start of Testing ###
32
33no warnings 'deprecated'; # Suppress warnings related to :unique
34
94a66813 35use Hash::Util 'lock_keys';
997c206d 36
fc04eb16 37my $test :shared = 2;
997c206d 38
fc04eb16 39# Note that we can't use Test::More here, as we would need to call is()
40# from within the DESTROY() function at global destruction time, and
41# parts of Test::* may have already been freed by then
42sub is($$$)
43{
997c206d 44 my ($got, $want, $desc) = @_;
f2cba68d 45 lock($test);
fc04eb16 46 if ($got ne $want) {
47 print("# EXPECTED: $want\n");
48 print("# GOT: $got\n");
49 print("not ");
997c206d 50 }
fc04eb16 51 print("ok $test - $desc\n");
997c206d 52 $test++;
53}
da46a8d0 54
55
fc04eb16 56# This tests for too much destruction which was caused by cloning stashes
57# on join which led to double the dataspace under 5.8.0
f2cba68d 58if ($] != 5.008)
fc04eb16 59{
60 sub Foo::DESTROY
61 {
62 my $self = shift;
63 my ($package, $file, $line) = caller;
64 is(threads->tid(), $self->{tid}, "In destroy[$self->{tid}] it should be correct too" );
da46a8d0 65 }
fc04eb16 66
67 my $foo = bless {tid => 0}, 'Foo';
68 my $bar = threads->create(sub {
69 is(threads->tid(), 1, "And tid be 1 here");
70 $foo->{tid} = 1;
71 return ($foo);
da46a8d0 72 })->join();
73 $bar->{tid} = 0;
da46a8d0 74}
ad4404a3 75
fc04eb16 76
ad4404a3 77# This tests whether we can call Config::myconfig after threads have been
78# started (interpreter cloned). 5.8.1 and 5.8.2 contained a bug that would
fc04eb16 79# disallow that to be done because an attempt was made to change a variable
80# with the :unique attribute.
81
f2cba68d 82{
83 lock($test);
84 if ($] == 5.008 || $] >= 5.008003) {
85 threads->create( sub {1} )->join;
86 my $not = eval { Config::myconfig() } ? '' : 'not ';
87 print "${not}ok $test - Are we able to call Config::myconfig after clone\n";
88 } else {
89 print "ok $test # Skip Are we able to call Config::myconfig after clone\n";
90 }
91 $test++;
0f1612a7 92}
ad4404a3 93
fc04eb16 94
53c33732 95# bugid 24383 - :unique hashes weren't being made readonly on interpreter
96# clone; check that they are.
97
98our $unique_scalar : unique;
99our @unique_array : unique;
100our %unique_hash : unique;
fc04eb16 101threads->create(sub {
f2cba68d 102 lock($test);
fc04eb16 103 my $TODO = ":unique needs to be re-implemented in a non-broken way";
104 eval { $unique_scalar = 1 };
105 print $@ =~ /read-only/
106 ? '' : 'not ', "ok $test # TODO $TODO - unique_scalar\n";
107 $test++;
108 eval { $unique_array[0] = 1 };
109 print $@ =~ /read-only/
110 ? '' : 'not ', "ok $test # TODO $TODO - unique_array\n";
111 $test++;
0f1612a7 112 if ($] >= 5.008003 && $^O ne 'MSWin32') {
113 eval { $unique_hash{abc} = 1 };
114 print $@ =~ /disallowed/
115 ? '' : 'not ', "ok $test # TODO $TODO - unique_hash\n";
116 } else {
117 print("ok $test # Skip $TODO - unique_hash\n");
118 }
fc04eb16 119 $test++;
120 })->join;
53c33732 121
371fce9b 122# bugid #24940 :unique should fail on my and sub declarations
123
124for my $decl ('my $x : unique', 'sub foo : unique') {
f2cba68d 125 {
126 lock($test);
127 if ($] >= 5.008005) {
128 eval $decl;
129 print $@ =~ /^The 'unique' attribute may only be applied to 'our' variables/
130 ? '' : 'not ', "ok $test - $decl\n";
131 } else {
132 print("ok $test # Skip $decl\n");
133 }
134 $test++;
0f1612a7 135 }
371fce9b 136}
137
138
b23f1a86 139# Returing a closure from a thread caused problems. If the last index in
140# the anon sub's pad wasn't for a lexical, then a core dump could occur.
141# Otherwise, there might be leaked scalars.
142
a6144651 143# XXX DAPM 9-Jan-04 - backed this out for now - returning a closure from a
144# thread seems to crash win32
145
146# sub f {
147# my $x = "foo";
148# sub { $x."bar" };
149# }
150#
f4cc38af 151# my $string = threads->create(\&f)->join->();
a6144651 152# print $string eq 'foobar' ? '' : 'not ', "ok $test - returning closure\n";
153# $test++;
b23f1a86 154
0f1612a7 155
94a66813 156# Nothing is checking that total keys gets cloned correctly.
157
158my %h = (1,2,3,4);
fc04eb16 159is(keys(%h), 2, "keys correct in parent");
94a66813 160
fc04eb16 161my $child = threads->create(sub { return (scalar(keys(%h))); })->join;
162is($child, 2, "keys correct in child");
94a66813 163
fc04eb16 164lock_keys(%h);
165delete($h{1});
94a66813 166
fc04eb16 167is(keys(%h), 1, "keys correct in parent with restricted hash");
94a66813 168
fc04eb16 169$child = threads->create(sub { return (scalar(keys(%h))); })->join;
170is($child, 1, "keys correct in child with restricted hash");
94a66813 171
fc04eb16 172# EOF