This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #119949] Stop undef *_, goto &sub from crashing
[perl5.git] / t / op / sub.t
CommitLineData
f7218ed4 1#!./perl -w
2d981f27
AB
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
f7218ed4 6 require './test.pl';
2d981f27
AB
7}
8
a6181857 9plan( tests => 33 );
2d981f27
AB
10
11sub empty_sub {}
12
13is(empty_sub,undef,"Is empty");
14is(empty_sub(1,2,3),undef,"Is still empty");
15@test = empty_sub();
16is(scalar(@test), 0, 'Didnt return anything');
17@test = empty_sub(1,2,3);
18is(scalar(@test), 0, 'Didnt return anything');
19
4d198de3
DM
20# RT #63790: calling PL_sv_yes as a sub is special-cased to silently
21# return (so Foo->import() silently fails if import() doesn't exist),
22# But make sure it correctly pops the stack and mark stack before returning.
23
24{
25 my @a;
26 push @a, 4, 5, main->import(6,7);
27 ok(eq_array(\@a, [4,5]), "import with args");
28
29 @a = ();
30 push @a, 14, 15, main->import;
31 ok(eq_array(\@a, [14,15]), "import without args");
32
33 my $x = 1;
34
35 @a = ();
36 push @a, 24, 25, &{$x == $x}(26,27);
37 ok(eq_array(\@a, [24,25]), "yes with args");
38
39 @a = ();
40 push @a, 34, 35, &{$x == $x};
41 ok(eq_array(\@a, [34,35]), "yes without args");
42}
3ed94dc0
FC
43
44# [perl #81944] return should always copy
45{
46 $foo{bar} = 7;
47 for my $x ($foo{bar}) {
48 # Pity test.pl doesnt have isn't.
49 isnt \sub { delete $foo{bar} }->(), \$x,
50 'result of delete(helem) is copied when returned';
51 }
52 $foo{bar} = 7;
53 for my $x ($foo{bar}) {
54 isnt \sub { return delete $foo{bar} }->(), \$x,
55 'result of delete(helem) is copied when explicitly returned';
56 }
57 my $x;
58 isnt \sub { delete $_[0] }->($x), \$x,
59 'result of delete(aelem) is copied when returned';
60 isnt \sub { return delete $_[0] }->($x), \$x,
61 'result of delete(aelem) is copied when explicitly returned';
62 isnt \sub { ()=\@_; shift }->($x), \$x,
63 'result of shift is copied when returned';
64 isnt \sub { ()=\@_; return shift }->($x), \$x,
65 'result of shift is copied when explicitly returned';
66}
f6894bc8
FC
67
68fresh_perl_is
69 <<'end', "main::foo\n", {}, 'sub redefinition sets CvGV';
70*foo = \&baz;
71*bar = *foo;
72eval 'sub bar { print +(caller 0)[3], "\n" }';
73bar();
74end
e52de15a
FC
75
76fresh_perl_is
77 <<'end', "main::foo\nok\n", {}, 'no double free redefining anon stub';
78my $sub = sub { 4 };
79*foo = $sub;
80*bar = *foo;
81undef &$sub;
82eval 'sub bar { print +(caller 0)[3], "\n" }';
83&$sub;
84undef *foo;
85undef *bar;
86print "ok\n";
87end
7f6ba6d2
FC
88
89# The outer call sets the scalar returned by ${\""}.${\""} to the current
90# package name.
91# The inner call sets it to "road".
92# Each call records the value twice, the outer call surrounding the inner
93# call. In 5.10-5.18 under ithreads, what gets pushed is
94# qw(main road road road) because the inner call is clobbering the same
95# scalar. If __PACKAGE__ is changed to "main", it works, the last element
96# becoming "main".
97my @scratch;
98sub a {
99 for (${\""}.${\""}) {
100 $_ = $_[0];
101 push @scratch, $_;
102 a("road",1) unless $_[1];
103 push @scratch, $_;
104 }
105}
106a(__PACKAGE__);
107require Config;
7f6ba6d2
FC
108is "@scratch", "main road road main",
109 'recursive calls do not share shared-hash-key TARGs';
8e079c2a
FC
110
111# Another test for the same bug, that does not rely on foreach. It depends
112# on ref returning a shared hash key TARG.
113undef @scratch;
114sub b {
115 my ($pack, $depth) = @_;
116 my $o = bless[], $pack;
117 $pack++;
118 push @scratch, (ref $o, $depth||b($pack,$depth+1))[0];
119}
120b('n',0);
8e079c2a
FC
121is "@scratch", "o n",
122 'recursive calls do not share shared-hash-key TARGs (2)';
2d885586 123
2d885586
FC
124# [perl #78194] @_ aliasing op return values
125sub { is \$_[0], \$_[0],
126 '[perl #78194] \$_[0] == \$_[0] when @_ aliases "$x"' }
127 ->("${\''}");
b784b94c
FC
128
129# The return statement should make no difference in this case:
130sub not_constant () { 42 }
131sub not_constantr() { return 42 }
d2440203
FC
132use feature 'lexical_subs'; no warnings 'experimental::lexical_subs';
133my sub not_constantm () { 42 }
134my sub not_constantmr() { return 42 }
b784b94c
FC
135eval { ${\not_constant}++ };
136is $@, "", 'sub (){42} returns a mutable value';
b784b94c
FC
137eval { ${\not_constantr}++ };
138is $@, "", 'sub (){ return 42 } returns a mutable value';
d2440203
FC
139eval { ${\not_constantm}++ };
140is $@, "", 'my sub (){42} returns a mutable value';
141eval { ${\not_constantmr}++ };
142is $@, "", 'my sub (){ return 42 } returns a mutable value';
0ad6fa35
FC
143is eval {
144 sub Crunchy () { 1 }
145 sub Munchy { $_[0] = 2 }
146 eval "Crunchy"; # test that freeing this op does not turn off PADTMP
147 Munchy(Crunchy);
148} || $@, 2, 'freeing ops does not make sub(){42} immutable';
137da2b0
FC
149
150# [perl #79908]
151{
152 my $x = 5;
153 *_79908 = sub (){$x};
154 $x = 7;
155 is eval "_79908", 7, 'sub(){$x} does not break closures';
156 isnt eval '\_79908', \$x, 'sub(){$x} returns a copy';
157
158 # Test another thing that was broken by $x inlinement
159 my $y;
160 no warnings 'once';
161 local *time = sub():method{$y};
162 my $w;
163 local $SIG{__WARN__} = sub { $w .= shift };
164 eval "()=time";
165 is $w, undef,
166 '*keyword = sub():method{$y} does not cause ambiguity warnings';
167}
dd2a7f90
FC
168
169# &xsub when @_ has nonexistent elements
170{
171 no warnings "uninitialized";
172 local @_ = ();
173 $#_++;
174 &utf8::encode;
175 is @_, 1, 'num of elems in @_ after &xsub with nonexistent $_[0]';
176 is $_[0], "", 'content of nonexistent $_[0] is modified by &xsub';
177}
8c9d3376
FC
178
179# &xsub when @_ itself does not exist
180undef *_;
181eval { &utf8::encode };
182# The main thing we are testing is that it did not crash. But make sure
183# *_{ARRAY} was untouched, too.
184is *_{ARRAY}, undef, 'goto &xsub when @_ does not exist';
7004ee49
FC
185
186# We do not want re.pm loaded at this point. Move this test up or find
187# another XSUB if this fails.
188ok !exists $INC{"re.pm"}, 're.pm not loaded yet';
189{
7004ee49
FC
190 sub re::regmust{}
191 bless \&re::regmust;
192 DESTROY {
a28a9f6b 193 no warnings 'redefine', 'prototype';
7004ee49
FC
194 my $str1 = "$_[0]";
195 *re::regmust = sub{}; # GvSV had no refcount, so this freed it
196 my $str2 = "$_[0]"; # used to be UNKNOWN(0x7fdda29310e0)
197 @str = ($str1, $str2);
198 }
a28a9f6b 199 local $^W; # Suppress redef warnings in XSLoader
7004ee49
FC
200 require re;
201 is $str[1], $str[0],
202 'XSUB clobbering sub whose DESTROY assigns to the glob';
203}
a6181857
FC
204{
205 no warnings 'redefine';
206 sub foo {}
207 bless \&foo, 'newATTRSUBbug';
208 sub newATTRSUBbug::DESTROY {
209 my $str1 = "$_[0]";
210 *foo = sub{}; # GvSV had no refcount, so this freed it
211 my $str2 = "$_[0]"; # used to be UNKNOWN(0x7fdda29310e0)
212 @str = ($str1, $str2);
213 }
214 splice @str;
215 eval "sub foo{}";
216 is $str[1], $str[0],
217 'Pure-Perl sub clobbering sub whose DESTROY assigns to the glob';
218}