1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = "../lib";
require "./test.pl";
}
plan(26);
my $tmpfile = tempfile();
open (tmp,'>', $tmpfile) || die "Can't create Cmd_while.tmp.";
print tmp "tvi925\n";
print tmp "tvi920\n";
print tmp "vt100\n";
print tmp "Amiga\n";
print tmp "paper\n";
close tmp or die "Could not close: $!";
# test "last" command
open(fh, $tmpfile) || die "Can't open Cmd_while.tmp.";
while (<fh>) {
last if /vt100/;
}
ok(!eof && /vt100/);
# test "next" command
$bad = '';
open(fh, $tmpfile) || die "Can't open Cmd_while.tmp.";
while (<fh>) {
next if /vt100/;
$bad = 1 if /vt100/;
}
ok(eof && !/vt100/ && !$bad);
# test "redo" command
$bad = '';
open(fh,$tmpfile) || die "Can't open Cmd_while.tmp.";
while (<fh>) {
if (s/vt100/VT100/g) {
s/VT100/Vt100/g;
redo;
}
$bad = 1 if /vt100/;
$bad = 1 if /VT100/;
}
ok(eof && !$bad);
# now do the same with a label and a continue block
# test "last" command
$badcont = '';
open(fh,$tmpfile) || die "Can't open Cmd_while.tmp.";
line: while (<fh>) {
if (/vt100/) {last line;}
} continue {
$badcont = 1 if /vt100/;
}
ok(!eof && /vt100/);
ok(!$badcont);
# test "next" command
$bad = '';
$badcont = 1;
open(fh,$tmpfile) || die "Can't open Cmd_while.tmp.";
entry: while (<fh>) {
next entry if /vt100/;
$bad = 1 if /vt100/;
} continue {
$badcont = '' if /vt100/;
}
ok(eof && !/vt100/ && !$bad);
ok(!$badcont);
# test "redo" command
$bad = '';
$badcont = '';
open(fh,$tmpfile) || die "Can't open Cmd_while.tmp.";
loop: while (<fh>) {
if (s/vt100/VT100/g) {
s/VT100/Vt100/g;
redo loop;
}
$bad = 1 if /vt100/;
$bad = 1 if /VT100/;
} continue {
$badcont = 1 if /vt100/;
}
ok(eof && !$bad);
ok(!$badcont);
close(fh) || die "Can't close Cmd_while.tmp.";
$i = 9;
{
$i++;
}
is($i, 10);
# Check curpm is reset when jumping out of a scope
$i = 0;
'abc' =~ /b/;
WHILE:
while (1) {
$i++;
is($` . $& . $', "abc");
{ # Localize changes to $` and friends
'end' =~ /end/;
redo WHILE if $i == 1;
next WHILE if $i == 2;
# 3 do a normal loop
last WHILE if $i == 4;
}
}
is($` . $& . $', "abc");
# check that scope cleanup happens right when there's a continue block
{
my $var = 16;
my (@got_var, @got_i);
while (my $i = ++$var) {
next if $i == 17;
last if $i > 17;
my $i = 0;
}
continue {
($got_var, $got_i) = ($var, $i);
}
is($got_var, 17);
is($got_i, 17);
}
{
my $got_l;
local $l = 18;
{
local $l = 0
}
continue {
$got_l = $l;
}
is($got_l, 18);
}
{
my $got_l;
local $l = 19;
my $x = 0;
while (!$x++) {
local $l = 0
}
continue {
$got_l = $l;
}
is($got_l, $l);
}
{
my $ok = 1;
$i = 20;
while (1) {
my $x;
$ok = 0 if defined $x;
if ($i == 21) {
next;
}
last;
}
continue {
++$i;
}
ok($ok);
}
sub save_context { $_[0] = wantarray; $_[1] }
{
my $context = -1;
my $p = sub {
my $x = 1;
while ($x--) {
save_context($context, "foo");
}
};
is(scalar($p->()), 0);
is($context, undef, "last statement in while block has 'void' context");
}
{
my $context = -1;
my $p = sub {
my $x = 1;
{
save_context($context, "foo");
}
};
is(scalar($p->()), "foo");
is($context, "", "last statement in block has 'scalar' context");
}
{
# test scope is cleaned
my $i = 0;
my @a;
while ($i++ < 2) {
my $x;
push @a, \$x;
}
ok($a[0] ne $a[1]);
}
fresh_perl_is <<'72406', "foobar\n", {},
{ package o; use overload bool => sub { die unless $::ok++; return 1 } }
use constant OK => bless [], o::;
do{print("foobar\n");}until OK;
72406
"[perl #72406] segv with do{}until CONST where const is not folded";
|