xref: /openbsd-src/gnu/usr.bin/perl/t/op/ref.t (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1#!./perl
2
3BEGIN {
4    chdir 't' if -d 't';
5    @INC = qw(. ../lib);
6    require 'test.pl';
7}
8
9use strict qw(refs subs);
10
11plan(235);
12
13# Test glob operations.
14
15$bar = "one";
16$foo = "two";
17{
18    local(*foo) = *bar;
19    is($foo, 'one');
20}
21is ($foo, 'two');
22
23$baz = "three";
24$foo = "four";
25{
26    local(*foo) = 'baz';
27    is ($foo, 'three');
28}
29is ($foo, 'four');
30
31$foo = "global";
32{
33    local(*foo);
34    is ($foo, undef);
35    $foo = "local";
36    is ($foo, 'local');
37}
38is ($foo, 'global');
39
40{
41    no strict 'refs';
42# Test fake references.
43
44    $baz = "valid";
45    $bar = 'baz';
46    $foo = 'bar';
47    is ($$$foo, 'valid');
48}
49
50# Test real references.
51
52$FOO = \$BAR;
53$BAR = \$BAZ;
54$BAZ = "hit";
55is ($$$FOO, 'hit');
56
57# Test references to real arrays.
58
59my $test = curr_test();
60@ary = ($test,$test+1,$test+2,$test+3);
61$ref[0] = \@a;
62$ref[1] = \@b;
63$ref[2] = \@c;
64$ref[3] = \@d;
65for $i (3,1,2,0) {
66    push(@{$ref[$i]}, "ok $ary[$i]\n");
67}
68print @a;
69print ${$ref[1]}[0];
70print @{$ref[2]}[0];
71{
72    no strict 'refs';
73    print @{'d'};
74}
75curr_test($test+4);
76
77# Test references to references.
78
79$refref = \\$x;
80$x = "Good";
81is ($$$refref, 'Good');
82
83# Test nested anonymous lists.
84
85$ref = [[],2,[3,4,5,]];
86is (scalar @$ref, 3);
87is ($$ref[1], 2);
88is (${$$ref[2]}[2], 5);
89is (scalar @{$$ref[0]}, 0);
90
91is ($ref->[1], 2);
92is ($ref->[2]->[0], 3);
93
94# Test references to hashes of references.
95
96$refref = \%whatever;
97$refref->{"key"} = $ref;
98is ($refref->{"key"}->[2]->[0], 3);
99
100# Test to see if anonymous subarrays spring into existence.
101
102$spring[5]->[0] = 123;
103$spring[5]->[1] = 456;
104push(@{$spring[5]}, 789);
105is (join(':',@{$spring[5]}), "123:456:789");
106
107# Test to see if anonymous subhashes spring into existence.
108
109@{$spring2{"foo"}} = (1,2,3);
110$spring2{"foo"}->[3] = 4;
111is (join(':',@{$spring2{"foo"}}), "1:2:3:4");
112
113# Test references to subroutines.
114
115{
116    my $called;
117    sub mysub { $called++; }
118    $subref = \&mysub;
119    &$subref;
120    is ($called, 1);
121}
122is ref eval {\&{""}}, "CODE", 'reference to &{""} [perl #94476]';
123
124# Test references to return values of operators (TARGs/PADTMPs)
125{
126    my @refs;
127    for("a", "b") {
128        push @refs, \"$_"
129    }
130    is join(" ", map $$_, @refs), "a b", 'refgen+PADTMP';
131}
132
133$subrefref = \\&mysub2;
134is ($$subrefref->("GOOD"), "good");
135sub mysub2 { lc shift }
136
137# Test REGEXP assignment
138
139SKIP: {
140    skip_if_miniperl("no dynamic loading on miniperl, so can't load re", 5);
141    require re;
142    my $x = qr/x/;
143    my $str = "$x"; # regex stringification may change
144
145    my $y = $$x;
146    is ($y, $str, "bare REGEXP stringifies correctly");
147    ok (eval { "x" =~ $y }, "bare REGEXP matches correctly");
148
149    my $z = \$y;
150    ok (re::is_regexp($z), "new ref to REXEXP passes is_regexp");
151    is ($z, $str, "new ref to REGEXP stringifies correctly");
152    ok (eval { "x" =~ $z }, "new ref to REGEXP matches correctly");
153}
154{
155    my ($x, $str);
156    {
157        my $y = qr/x/;
158        $str = "$y";
159        $x = $$y;
160    }
161    is ($x, $str, "REGEXP keeps a ref to its mother_re");
162    ok (eval { "x" =~ $x }, "REGEXP with mother_re still matches");
163}
164
165# Test the ref operator.
166
167sub PVBM () { 'foo' }
168{ my $dummy = index 'foo', PVBM }
169
170my $pviv = 1; "$pviv";
171my $pvnv = 1.0; "$pvnv";
172my $x;
173
174# we don't test
175#   tied lvalue => SCALAR, as we haven't tested tie yet
176#   BIND, 'cos we can't create them yet
177#   REGEXP, 'cos that requires overload or Scalar::Util
178
179for (
180    [ 'undef',          SCALAR  => \undef               ],
181    [ 'constant IV',    SCALAR  => \1                   ],
182    [ 'constant NV',    SCALAR  => \1.0                 ],
183    [ 'constant PV',    SCALAR  => \'f'                 ],
184    [ 'scalar',         SCALAR  => \$x                  ],
185    [ 'PVIV',           SCALAR  => \$pviv               ],
186    [ 'PVNV',           SCALAR  => \$pvnv               ],
187    [ 'PVMG',           SCALAR  => \$0                  ],
188    [ 'PVBM',           SCALAR  => \PVBM                ],
189    [ 'scalar @array',  SCALAR  => \scalar @array       ],
190    [ 'scalar %hash',   SCALAR  => \scalar %hash        ],
191    [ 'vstring',        VSTRING => \v1                  ],
192    [ 'ref',            REF     => \\1                  ],
193    [ 'substr lvalue',  LVALUE  => \substr($x, 0, 0)    ],
194    [ 'pos lvalue',     LVALUE  => \pos                 ],
195    [ 'vec lvalue',     LVALUE  => \vec($x,0,1)         ],
196    [ 'named array',    ARRAY   => \@ary                ],
197    [ 'anon array',     ARRAY   => [ 1 ]                ],
198    [ 'named hash',     HASH    => \%whatever           ],
199    [ 'anon hash',      HASH    => { a => 1 }           ],
200    [ 'named sub',      CODE    => \&mysub,             ],
201    [ 'anon sub',       CODE    => sub { 1; }           ],
202    [ 'glob',           GLOB    => \*foo                ],
203    [ 'format',         FORMAT  => *STDERR{FORMAT}      ],
204) {
205    my ($desc, $type, $ref) = @$_;
206    is (ref $ref, $type, "ref() for ref to $desc");
207    like ("$ref", qr/^$type\(0x[0-9a-f]+\)$/, "stringify for ref to $desc");
208}
209
210is (ref *STDOUT{IO}, 'IO::File', 'IO refs are blessed into IO::File');
211like (*STDOUT{IO}, qr/^IO::File=IO\(0x[0-9a-f]+\)$/,
212    'stringify for IO refs');
213
214{ # Test re-use of ref's TARG [perl #101738]
215  my $obj = bless [], '____';
216  my $uniobj = bless [], chr 256;
217  my $get_ref = sub { ref shift };
218  my $dummy = &$get_ref($uniobj);
219     $dummy = &$get_ref($obj);
220  ok exists { ____ => undef }->{$dummy}, 'ref sets UTF8 flag correctly';
221}
222
223# Test anonymous hash syntax.
224
225$anonhash = {};
226is (ref $anonhash, 'HASH');
227$anonhash2 = {FOO => 'BAR', ABC => 'XYZ',};
228is (join('', sort values %$anonhash2), 'BARXYZ');
229
230# Test bless operator.
231
232package MYHASH;
233
234$object = bless $main'anonhash2;
235main::is (ref $object, 'MYHASH');
236main::is ($object->{ABC}, 'XYZ');
237
238$object2 = bless {};
239main::is (ref $object2,	'MYHASH');
240
241# Test ordinary call on object method.
242
243&mymethod($object,"argument");
244
245sub mymethod {
246    local($THIS, @ARGS) = @_;
247    die 'Got a "' . ref($THIS). '" instead of a MYHASH'
248	unless ref $THIS eq 'MYHASH';
249    main::is ($ARGS[0], "argument");
250    main::is ($THIS->{FOO}, 'BAR');
251}
252
253# Test automatic destructor call.
254
255$string = "bad";
256$object = "foo";
257$string = "good";
258$main'anonhash2 = "foo";
259$string = "";
260
261DESTROY {
262    return unless $string;
263    main::is ($string, 'good');
264
265    # Test that the object has not already been "cursed".
266    main::isnt (ref shift, 'HASH');
267}
268
269# Now test inheritance of methods.
270
271package OBJ;
272
273@ISA = ('BASEOBJ');
274
275$main'object = bless {FOO => 'foo', BAR => 'bar'};
276
277package main;
278
279# Test arrow-style method invocation.
280
281is ($object->doit("BAR"), 'bar');
282
283# Test indirect-object-style method invocation.
284
285$foo = doit $object "FOO";
286main::is ($foo, 'foo');
287
288sub BASEOBJ'doit {
289    local $ref = shift;
290    die "Not an OBJ" unless ref $ref eq 'OBJ';
291    $ref->{shift()};
292}
293
294package UNIVERSAL;
295@ISA = 'LASTCHANCE';
296
297package LASTCHANCE;
298sub foo { main::is ($_[1], 'works') }
299
300package WHATEVER;
301foo WHATEVER "works";
302
303#
304# test the \(@foo) construct
305#
306package main;
307@foo = \(1..3);
308@bar = \(@foo);
309@baz = \(1,@foo,@bar);
310is (scalar (@bar), 3);
311is (scalar grep(ref($_), @bar), 3);
312is (scalar (@baz), 3);
313
314my(@fuu) = \(1..2,3);
315my(@baa) = \(@fuu);
316my(@bzz) = \(1,@fuu,@baa);
317is (scalar (@baa), 3);
318is (scalar grep(ref($_), @baa), 3);
319is (scalar (@bzz), 3);
320
321# also, it can't be an lvalue
322eval '\\($x, $y) = (1, 2);';
323like ($@, qr/Can\'t modify.*ref.*in.*assignment/);
324
325# test for proper destruction of lexical objects
326$test = curr_test();
327sub larry::DESTROY { print "# larry\nok $test\n"; }
328sub curly::DESTROY { print "# curly\nok ", $test + 1, "\n"; }
329sub moe::DESTROY   { print "# moe\nok ", $test + 2, "\n"; }
330
331{
332    my ($joe, @curly, %larry);
333    my $moe = bless \$joe, 'moe';
334    my $curly = bless \@curly, 'curly';
335    my $larry = bless \%larry, 'larry';
336    print "# leaving block\n";
337}
338
339print "# left block\n";
340curr_test($test + 3);
341
342# another glob test
343
344
345$foo = "garbage";
346{ local(*bar) = "foo" }
347$bar = "glob 3";
348local(*bar) = *bar;
349is ($bar, "glob 3");
350
351$var = "glob 4";
352$_   = \$var;
353is ($$_, 'glob 4');
354
355
356# test if reblessing during destruction results in more destruction
357$test = curr_test();
358{
359    package A;
360    sub new { bless {}, shift }
361    DESTROY { print "# destroying 'A'\nok ", $test + 1, "\n" }
362    package _B;
363    sub new { bless {}, shift }
364    DESTROY { print "# destroying '_B'\nok $test\n"; bless shift, 'A' }
365    package main;
366    my $b = _B->new;
367}
368curr_test($test + 2);
369
370# test if $_[0] is properly protected in DESTROY()
371
372{
373    my $test = curr_test();
374    my $i = 0;
375    local $SIG{'__DIE__'} = sub {
376	my $m = shift;
377	if ($i++ > 4) {
378	    print "# infinite recursion, bailing\nnot ok $test\n";
379	    exit 1;
380        }
381	like ($m, qr/^Modification of a read-only/);
382    };
383    package C;
384    sub new { bless {}, shift }
385    DESTROY { $_[0] = 'foo' }
386    {
387	print "# should generate an error...\n";
388	my $c = C->new;
389    }
390    print "# good, didn't recurse\n";
391}
392
393# test that DESTROY is called on all objects during global destruction,
394# even those without hard references [perl #36347]
395
396is(
397  runperl(
398   stderr => 1, prog => 'sub DESTROY { print qq-aaa\n- } bless \$a[0]'
399  ),
400 "aaa\n", 'DESTROY called on array elem'
401);
402is(
403  runperl(
404   stderr => 1,
405   prog => '{ bless \my@x; *a=sub{@x}}sub DESTROY { print qq-aaa\n- }'
406  ),
407 "aaa\n",
408 'DESTROY called on closure variable'
409);
410
411# But cursing objects must not result in double frees
412# This caused "Attempt to free unreferenced scalar" in 5.16.
413fresh_perl_is(
414  'bless \%foo::, bar::; bless \%bar::, foo::; print "ok\n"', "ok\n",
415   { stderr => 1 },
416  'no double free when stashes are blessed into each other');
417
418
419# test if refgen behaves with autoviv magic
420{
421    my @a;
422    $a[1] = "good";
423    my $got;
424    for (@a) {
425	$got .= ${\$_};
426	$got .= ';';
427    }
428    is ($got, ";good;");
429}
430
431# This test is the reason for postponed destruction in sv_unref
432$a = [1,2,3];
433$a = $a->[1];
434is ($a, 2);
435
436# This test used to coredump. The BEGIN block is important as it causes the
437# op that created the constant reference to be freed. Hence the only
438# reference to the constant string "pass" is in $a. The hack that made
439# sure $a = $a->[1] would work didn't work with references to constants.
440
441
442foreach my $lexical ('', 'my $a; ') {
443  my $expect = "pass\n";
444  my $result = runperl (switches => ['-wl'], stderr => 1,
445    prog => $lexical . 'BEGIN {$a = \q{pass}}; $a = $$a; print $a');
446
447  is ($?, 0);
448  is ($result, $expect);
449}
450
451$test = curr_test();
452sub x::DESTROY {print "ok ", $test + shift->[0], "\n"}
453{ my $a1 = bless [3],"x";
454  my $a2 = bless [2],"x";
455  { my $a3 = bless [1],"x";
456    my $a4 = bless [0],"x";
457    567;
458  }
459}
460curr_test($test+4);
461
462is (runperl (switches=>['-l'],
463	     prog=> 'print 1; print qq-*$\*-;print 1;'),
464    "1\n*\n*\n1\n");
465
466# bug #21347
467
468runperl(prog => 'sub UNIVERSAL::AUTOLOAD { qr// } a->p' );
469is ($?, 0, 'UNIVERSAL::AUTOLOAD called when freeing qr//');
470
471runperl(prog => 'sub UNIVERSAL::DESTROY { warn } bless \$a, A', stderr => 1);
472is ($?, 0, 'warn called inside UNIVERSAL::DESTROY');
473
474
475# bug #22719
476
477runperl(prog => 'sub f { my $x = shift; *z = $x; } f({}); f();');
478is ($?, 0, 'coredump on typeglob = (SvRV && !SvROK)');
479
480# bug #27268: freeing self-referential typeglobs could trigger
481# "Attempt to free unreferenced scalar" warnings
482
483is (runperl(
484    prog => 'use Symbol;my $x=bless \gensym,q{t}; print;*$$x=$x',
485    stderr => 1
486), '', 'freeing self-referential typeglob');
487
488# using a regex in the destructor for STDOUT segfaulted because the
489# REGEX pad had already been freed (ithreads build only). The
490# object is required to trigger the early freeing of GV refs to to STDOUT
491
492TODO: {
493    local $TODO = "works but output through pipe is mangled" if $^O eq 'VMS';
494    like (runperl(
495        prog => '$x=bless[]; sub IO::Handle::DESTROY{$_=q{bad};s/bad/ok/;print}',
496        stderr => 1
497          ), qr/^(ok)+$/, 'STDOUT destructor');
498}
499
500{
501    no strict 'refs';
502    $name8 = chr 163;
503    $name_utf8 = $name8 . chr 256;
504    chop $name_utf8;
505
506    is ($$name8, undef, 'Nothing before we start');
507    is ($$name_utf8, undef, 'Nothing before we start');
508    $$name8 = "Pound";
509    is ($$name8, "Pound", 'Accessing via 8 bit symref works');
510    is ($$name_utf8, "Pound", 'Accessing via UTF8 symref works');
511}
512
513{
514    no strict 'refs';
515    $name_utf8 = $name = chr 9787;
516    utf8::encode $name_utf8;
517
518    is (length $name, 1, "Name is 1 char");
519    is (length $name_utf8, 3, "UTF8 representation is 3 chars");
520
521    is ($$name, undef, 'Nothing before we start');
522    is ($$name_utf8, undef, 'Nothing before we start');
523    $$name = "Face";
524    is ($$name, "Face", 'Accessing via Unicode symref works');
525    is ($$name_utf8, undef,
526	'Accessing via the UTF8 byte sequence gives nothing');
527}
528
529{
530    no strict 'refs';
531    $name1 = "\0Chalk";
532    $name2 = "\0Cheese";
533
534    isnt ($name1, $name2, "They differ");
535
536    is ($$name1, undef, 'Nothing before we start (scalars)');
537    is ($$name2, undef, 'Nothing before we start');
538    $$name1 = "Yummy";
539    is ($$name1, "Yummy", 'Accessing via the correct name works');
540    is ($$name2, undef,
541	'Accessing via a different NUL-containing name gives nothing');
542    # defined uses a different code path
543    ok (defined $$name1, 'defined via the correct name works');
544    ok (!defined $$name2,
545	'defined via a different NUL-containing name gives nothing');
546
547    is ($name1->[0], undef, 'Nothing before we start (arrays)');
548    is ($name2->[0], undef, 'Nothing before we start');
549    $name1->[0] = "Yummy";
550    is ($name1->[0], "Yummy", 'Accessing via the correct name works');
551    is ($name2->[0], undef,
552	'Accessing via a different NUL-containing name gives nothing');
553    ok (defined $name1->[0], 'defined via the correct name works');
554    ok (!defined$name2->[0],
555	'defined via a different NUL-containing name gives nothing');
556
557    my (undef, $one) = @{$name1}[2,3];
558    my (undef, $two) = @{$name2}[2,3];
559    is ($one, undef, 'Nothing before we start (array slices)');
560    is ($two, undef, 'Nothing before we start');
561    @{$name1}[2,3] = ("Very", "Yummy");
562    (undef, $one) = @{$name1}[2,3];
563    (undef, $two) = @{$name2}[2,3];
564    is ($one, "Yummy", 'Accessing via the correct name works');
565    is ($two, undef,
566	'Accessing via a different NUL-containing name gives nothing');
567    ok (defined $one, 'defined via the correct name works');
568    ok (!defined $two,
569	'defined via a different NUL-containing name gives nothing');
570
571    is ($name1->{PWOF}, undef, 'Nothing before we start (hashes)');
572    is ($name2->{PWOF}, undef, 'Nothing before we start');
573    $name1->{PWOF} = "Yummy";
574    is ($name1->{PWOF}, "Yummy", 'Accessing via the correct name works');
575    is ($name2->{PWOF}, undef,
576	'Accessing via a different NUL-containing name gives nothing');
577    ok (defined $name1->{PWOF}, 'defined via the correct name works');
578    ok (!defined $name2->{PWOF},
579	'defined via a different NUL-containing name gives nothing');
580
581    my (undef, $one) = @{$name1}{'SNIF', 'BEEYOOP'};
582    my (undef, $two) = @{$name2}{'SNIF', 'BEEYOOP'};
583    is ($one, undef, 'Nothing before we start (hash slices)');
584    is ($two, undef, 'Nothing before we start');
585    @{$name1}{'SNIF', 'BEEYOOP'} = ("Very", "Yummy");
586    (undef, $one) = @{$name1}{'SNIF', 'BEEYOOP'};
587    (undef, $two) = @{$name2}{'SNIF', 'BEEYOOP'};
588    is ($one, "Yummy", 'Accessing via the correct name works');
589    is ($two, undef,
590	'Accessing via a different NUL-containing name gives nothing');
591    ok (defined $one, 'defined via the correct name works');
592    ok (!defined $two,
593	'defined via a different NUL-containing name gives nothing');
594
595    $name1 = "Left"; $name2 = "Left\0Right";
596    my $glob2 = *{$name2};
597
598    is ($glob1, undef, "We get different typeglobs. In fact, undef");
599
600    *{$name1} = sub {"One"};
601    *{$name2} = sub {"Two"};
602
603    is (&{$name1}, "One");
604    is (&{$name2}, "Two");
605}
606
607# test derefs after list slice
608
609is ( ({foo => "bar"})[0]{foo}, "bar", 'hash deref from list slice w/o ->' );
610is ( ({foo => "bar"})[0]->{foo}, "bar", 'hash deref from list slice w/ ->' );
611is ( ([qw/foo bar/])[0][1], "bar", 'array deref from list slice w/o ->' );
612is ( ([qw/foo bar/])[0]->[1], "bar", 'array deref from list slice w/ ->' );
613is ( (sub {"bar"})[0](), "bar", 'code deref from list slice w/o ->' );
614is ( (sub {"bar"})[0]->(), "bar", 'code deref from list slice w/ ->' );
615
616# deref on empty list shouldn't autovivify
617{
618    local $@;
619    eval { ()[0]{foo} };
620    like ( "$@", "Can't use an undefined value as a HASH reference",
621           "deref of undef from list slice fails" );
622}
623
624# test dereferencing errors
625{
626    format STDERR =
627.
628    my $ref;
629    foreach $ref (*STDOUT{IO}, *STDERR{FORMAT}) {
630	eval q/ $$ref /;
631	like($@, qr/Not a SCALAR reference/, "Scalar dereference");
632	eval q/ @$ref /;
633	like($@, qr/Not an ARRAY reference/, "Array dereference");
634	eval q/ %$ref /;
635	like($@, qr/Not a HASH reference/, "Hash dereference");
636	eval q/ &$ref /;
637	like($@, qr/Not a CODE reference/, "Code dereference");
638    }
639
640    $ref = *STDERR{FORMAT};
641    eval q/ *$ref /;
642    like($@, qr/Not a GLOB reference/, "Glob dereference");
643
644    $ref = *STDOUT{IO};
645    eval q/ *$ref /;
646    is($@, '', "Glob dereference of PVIO is acceptable");
647
648    is($ref, *{$ref}{IO}, "IO slot of the temporary glob is set correctly");
649}
650
651# these will segfault if they fail
652
653my $pvbm = PVBM;
654my $rpvbm = \$pvbm;
655
656ok (!eval { *$rpvbm }, 'PVBM ref is not a GLOB ref');
657ok (!eval { *$pvbm }, 'PVBM is not a GLOB ref');
658ok (!eval { $$pvbm }, 'PVBM is not a SCALAR ref');
659ok (!eval { @$pvbm }, 'PVBM is not an ARRAY ref');
660ok (!eval { %$pvbm }, 'PVBM is not a HASH ref');
661ok (!eval { $pvbm->() }, 'PVBM is not a CODE ref');
662ok (!eval { $rpvbm->foo }, 'PVBM is not an object');
663
664# bug 24254
665is( runperl(stderr => 1, prog => 'map eval qq(exit),1 for 1'), "");
666is( runperl(stderr => 1, prog => 'eval { for (1) { map { die } 2 } };'), "");
667is( runperl(stderr => 1, prog => 'for (125) { map { exit } (213)}'), "");
668my $hushed = $^O eq 'VMS' ? 'use vmsish qw(hushed);' : '';
669is( runperl(stderr => 1, prog => $hushed . 'map die,4 for 3'), "Died at -e line 1.\n");
670is( runperl(stderr => 1, prog => $hushed . 'grep die,4 for 3'), "Died at -e line 1.\n");
671is( runperl(stderr => 1, prog => $hushed . 'for $a (3) {@b=sort {die} 4,5}'), "Died at -e line 1.\n");
672
673# bug 57564
674is( runperl(stderr => 1, prog => 'my $i;for $i (1) { for $i (2) { } }'), "");
675
676# The mechanism for freeing objects in globs used to leave dangling
677# pointers to freed SVs. To test this, we construct this nested structure:
678#    GV => blessed(AV) => RV => GV => blessed(SV)
679# all with a refcnt of 1, and hope that the second GV gets processed first
680# by do_clean_named_objs.  Then when the first GV is processed, it mustn't
681# find anything nasty left by the previous GV processing.
682# The eval is stop things in the main body of the code holding a reference
683# to a GV, and the print at the end seems to bee necessary to ensure
684# the correct freeing order of *x and *y (no, I don't know why - DAPM).
685
686is (runperl(
687	prog => 'eval q[bless \@y; bless \$x; $y[0] = \*x; $z = \*y; ]; '
688		. 'delete $::{x}; delete $::{y}; print qq{ok\n};',
689	stderr => 1),
690    "ok\n", 'freeing freed glob in global destruction');
691
692
693# Test undefined hash references as arguments to %{} in boolean context
694# [perl #81750]
695{
696 no strict 'refs';
697 eval { my $foo; %$foo;             }; ok !$@, '%$undef';
698 eval { my $foo; scalar %$foo;      }; ok !$@, 'scalar %$undef';
699 eval { my $foo; !%$foo;            }; ok !$@, '!%$undef';
700 eval { my $foo; if ( %$foo) {}     }; ok !$@, 'if ( %$undef) {}';
701 eval { my $foo; if (!%$foo) {}     }; ok !$@, 'if (!%$undef) {}';
702 eval { my $foo; unless ( %$foo) {} }; ok !$@, 'unless ( %$undef) {}';
703 eval { my $foo; unless (!%$foo) {} }; ok !$@, 'unless (!%$undef) {}';
704 eval { my $foo; 1 if %$foo;        }; ok !$@, '1 if %$undef';
705 eval { my $foo; 1 if !%$foo;       }; ok !$@, '1 if !%$undef';
706 eval { my $foo; 1 unless %$foo;    }; ok !$@, '1 unless %$undef;';
707 eval { my $foo; 1 unless ! %$foo;  }; ok !$@, '1 unless ! %$undef';
708 eval { my $foo;  %$foo ? 1 : 0;    }; ok !$@, ' %$undef ? 1 : 0';
709 eval { my $foo; !%$foo ? 1 : 0;    }; ok !$@, '!%$undef ? 1 : 0';
710}
711
712# RT #88330
713# Make sure that a leaked thinggy with multiple weak references to
714# it doesn't trigger a panic with multiple rounds of global cleanup
715# (Perl_sv_clean_all).
716
717SKIP: {
718    skip_if_miniperl('no Scalar::Util under miniperl', 4);
719
720    local $ENV{PERL_DESTRUCT_LEVEL} = 2;
721
722    # we do all permutations of array/hash, 1ref/2ref, to account
723    # for the different way backref magic is stored
724
725    fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'array with 1 weak ref');
726use Scalar::Util qw(weaken);
727my $r = [];
728Internals::SvREFCNT(@$r, 9);
729my $r1 = $r;
730weaken($r1);
731print "ok";
732EOF
733
734    fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'array with 2 weak refs');
735use Scalar::Util qw(weaken);
736my $r = [];
737Internals::SvREFCNT(@$r, 9);
738my $r1 = $r;
739weaken($r1);
740my $r2 = $r;
741weaken($r2);
742print "ok";
743EOF
744
745    fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'hash with 1 weak ref');
746use Scalar::Util qw(weaken);
747my $r = {};
748Internals::SvREFCNT(%$r, 9);
749my $r1 = $r;
750weaken($r1);
751print "ok";
752EOF
753
754    fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'hash with 2 weak refs');
755use Scalar::Util qw(weaken);
756my $r = {};
757Internals::SvREFCNT(%$r, 9);
758my $r1 = $r;
759weaken($r1);
760my $r2 = $r;
761weaken($r2);
762print "ok";
763EOF
764
765}
766
767SKIP:{
768    skip_if_miniperl "no Scalar::Util on miniperl", 1;
769    my $error;
770    *hassgropper::DESTROY = sub {
771        require Scalar::Util;
772        eval { Scalar::Util::weaken($_[0]) };
773        $error = $@;
774        # This line caused a crash before weaken refused to weaken a
775        # read-only reference:
776        $do::not::overwrite::this = $_[0];
777    };
778    my $xs = bless [], "hassgropper";
779    undef $xs;
780    like $error, qr/^Modification of a read-only/,
781       'weaken refuses to weaken a read-only ref';
782    # Now that the test has passed, avoid sabotaging global destruction:
783    undef *hassgropper::DESTROY;
784    undef $do::not::overwrite::this;
785}
786
787
788is ref( bless {}, "nul\0clean" ), "nul\0clean", "ref() is nul-clean";
789
790# Test constants and references thereto.
791for (3) {
792    eval { $_ = 4 };
793    like $@, qr/^Modification of a read-only/,
794       'assignment to value aliased to literal number';
795    require Config;
796    eval { ${\$_} = 4 };
797    like $@, qr/^Modification of a read-only/,
798       'refgen does not allow assignment to value aliased to literal number';
799}
800for ("4eounthouonth") {
801    eval { $_ = 4 };
802    like $@, qr/^Modification of a read-only/,
803       'assignment to value aliased to literal string';
804    require Config;
805    eval { ${\$_} = 4 };
806    like $@, qr/^Modification of a read-only/,
807       'refgen does not allow assignment to value aliased to literal string';
808}
809{
810    my $aref = \123;
811    is \$$aref, $aref,
812	'[perl #109746] referential identity of \literal under threads+mad'
813}
814
815# Bit of a hack to make test.pl happy. There are 3 more tests after it leaves.
816$test = curr_test();
817curr_test($test + 3);
818# test global destruction
819
820my $test1 = $test + 1;
821my $test2 = $test + 2;
822
823package FINALE;
824
825{
826    $ref3 = bless ["ok $test2\n"];	# package destruction
827    my $ref2 = bless ["ok $test1\n"];	# lexical destruction
828    local $ref1 = bless ["ok $test\n"];	# dynamic destruction
829    1;					# flush any temp values on stack
830}
831
832DESTROY {
833    print $_[0][0];
834}
835
836