6 # @foo, @bar, and @ary are also used from tie-stdarray after tie-ing them
10 if (join('',@ary) eq '12345') {print "ok 1\n";} else {print "not ok 1\n";}
12 $tmp = $ary[$#ary]; --$#ary;
13 if ($tmp == 5) {print "ok 2\n";} else {print "not ok 2\n";}
14 if ($#ary == 3) {print "ok 3\n";} else {print "not ok 3\n";}
15 if (join('',@ary) eq '1234') {print "ok 4\n";} else {print "not ok 4\n";}
19 if (join('',@ary) eq '12345') {print "ok 5\n";} else {print "not ok 5\n";}
21 $tmp = $ary[$#ary]; --$#ary;
22 if ($tmp == 5) {print "ok 6\n";} else {print "not ok 6\n";}
23 if ($#ary == 4) {print "ok 7\n";} else {print "not ok 7\n";}
24 if (join('',@ary) eq '1234') {print "ok 8\n";} else {print "not ok 8\n";}
26 if ($ary[5] eq '') {print "ok 9\n";} else {print "not ok 9\n";}
28 $#ary += 1; # see if element 5 gone for good
29 if ($#ary == 5) {print "ok 10\n";} else {print "not ok 10\n";}
30 if (defined $ary[5]) {print "not ok 11\n";} else {print "ok 11\n";}
34 $r = join(',', $#foo, @foo);
35 if ($r eq "-1") {print "ok 12\n";} else {print "not ok 12 $r\n";}
37 $r = join(',', $#foo, @foo);
38 if ($r eq "0,0") {print "ok 13\n";} else {print "not ok 13 $r\n";}
40 $r = join(',', $#foo, @foo);
41 if ($r eq "2,0,,2") {print "ok 14\n";} else {print "not ok 14 $r\n";}
45 $r = join(',', $#bar, @bar);
46 if ($r eq "1,0,1") {print "ok 15\n";} else {print "not ok 15 $r\n";}
48 $r = join(',', $#bar, @bar);
49 if ($r eq "-1") {print "ok 16\n";} else {print "not ok 16 $r\n";}
51 $r = join(',', $#bar, @bar);
52 if ($r eq "0,0") {print "ok 17\n";} else {print "not ok 17 $r\n";}
54 $r = join(',', $#bar, @bar);
55 if ($r eq "2,0,,2") {print "ok 18\n";} else {print "not ok 18 $r\n";}
59 $r = join(',', $#bar, @bar);
60 if ($r eq "0,0") {print "ok 19\n";} else {print "not ok 19 $r\n";}
62 $r = join(',', $#bar, @bar);
63 if ($r eq "2,0,,2") {print "ok 20\n";} else {print "not ok 20 $r\n";}
65 $foo = 'now is the time';
66 if (($F1,$F2,$Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/)) {
67 if ($F1 eq 'now' && $F2 eq 'is' && $Etc eq 'the time') {
79 if ($cnt = (($F1,$F2,$Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/))) {
80 print "not ok 22 $cnt $F1:$F2:$Etc\n";
86 %foo = ('blurfl','dyick','foo','bar','etc.','etc.');
88 print $bar{'foo'} eq 'bar' ? "ok 23\n" : "not ok 23\n";
90 print $bar{'foo'} eq '' ? "ok 24\n" : "not ok 24\n";
91 (%bar,$a,$b) = (%foo,'how','now');
92 print $bar{'foo'} eq 'bar' ? "ok 25\n" : "not ok 25\n";
93 print $bar{'how'} eq 'now' ? "ok 26\n" : "not ok 26\n";
94 @bar{keys %foo} = values %foo;
95 print $bar{'foo'} eq 'bar' ? "ok 27\n" : "not ok 27\n";
96 print $bar{'how'} eq 'now' ? "ok 28\n" : "not ok 28\n";
98 @foo = grep(/e/,split(' ','now is the time for all good men to come to'));
99 print join(' ',@foo) eq 'the time men come' ? "ok 29\n" : "not ok 29\n";
101 @foo = grep(!/e/,split(' ','now is the time for all good men to come to'));
102 print join(' ',@foo) eq 'now is for all good to to' ? "ok 30\n" : "not ok 30\n";
104 $foo = join('',('a','b','c','d','e','f')[0..5]);
105 print $foo eq 'abcdef' ? "ok 31\n" : "not ok 31\n";
107 $foo = join('',('a','b','c','d','e','f')[0..1]);
108 print $foo eq 'ab' ? "ok 32\n" : "not ok 32\n";
110 $foo = join('',('a','b','c','d','e','f')[6]);
111 print $foo eq '' ? "ok 33\n" : "not ok 33\n";
113 @foo = ('a','b','c','d','e','f')[0,2,4];
114 @bar = ('a','b','c','d','e','f')[1,3,5];
115 $foo = join('',(@foo,@bar)[0..5]);
116 print $foo eq 'acebdf' ? "ok 34\n" : "not ok 34\n";
118 $foo = ('a','b','c','d','e','f')[0,2,4];
119 print $foo eq 'e' ? "ok 35\n" : "not ok 35\n";
121 $foo = ('a','b','c','d','e','f')[1];
122 print $foo eq 'b' ? "ok 36\n" : "not ok 36\n";
124 @foo = ( 'foo', 'bar', 'burbl');
126 print $#foo == 3 ? "ok 37\n" : "not ok 37\n";
128 # various AASSIGN_COMMON checks (see newASSIGNOP() in op.c)
131 sub t { ++$test; print "not " unless $_[0]; print "ok $test\n"; }
134 t("@foo" eq "foo bar burbl blah"); # 38
137 t("@foo" eq "bar burbl blah"); # 39
139 @foo = ('XXX',@foo, 'YYY');
140 t("@foo" eq "XXX bar burbl blah YYY"); # 40
142 @foo = @foo = qw(foo b\a\r bu\\rbl blah);
143 t("@foo" eq 'foo b\a\r bu\\rbl blah'); # 41
145 @bar = @foo = qw(foo bar); # 42
146 t("@foo" eq "foo bar");
147 t("@bar" eq "foo bar"); # 43
149 # try the same with local
150 # XXX tie-stdarray fails the tests involving local, so we use
151 # different variable names to escape the 'tie'
153 @bee = ( 'foo', 'bar', 'burbl', 'blah');
157 t("@bee" eq "foo bar burbl blah"); # 44
159 local (undef,@bee) = @bee;
160 t("@bee" eq "bar burbl blah"); # 45
162 local @bee = ('XXX',@bee,'YYY');
163 t("@bee" eq "XXX bar burbl blah YYY"); # 46
165 local @bee = local(@bee) = qw(foo bar burbl blah);
166 t("@bee" eq "foo bar burbl blah"); # 47
168 local (@bim) = local(@bee) = qw(foo bar);
169 t("@bee" eq "foo bar"); # 48
170 t("@bim" eq "foo bar"); # 49
172 t("@bee" eq "foo bar burbl blah"); # 50
174 t("@bee" eq "XXX bar burbl blah YYY"); # 51
176 t("@bee" eq "bar burbl blah"); # 52
178 t("@bee" eq "foo bar burbl blah"); # 53
181 # try the same with my
185 t("@bee" eq "foo bar burbl blah"); # 54
187 my (undef,@bee) = @bee;
188 t("@bee" eq "bar burbl blah"); # 55
190 my @bee = ('XXX',@bee,'YYY');
191 t("@bee" eq "XXX bar burbl blah YYY"); # 56
193 my @bee = my @bee = qw(foo bar burbl blah);
194 t("@bee" eq "foo bar burbl blah"); # 57
196 my (@bim) = my(@bee) = qw(foo bar);
197 t("@bee" eq "foo bar"); # 58
198 t("@bim" eq "foo bar"); # 59
200 t("@bee" eq "foo bar burbl blah"); # 60
202 t("@bee" eq "XXX bar burbl blah YYY"); # 61
204 t("@bee" eq "bar burbl blah"); # 62
206 t("@bee" eq "foo bar burbl blah"); # 63
209 # make sure reification behaves
211 sub reify { $_[1] = ++$t; print "@_\n"; }
215 # qw() is no more a runtime split, it's compiletime.
216 print "not " unless qw(foo bar snorfle)[2] eq 'snorfle';
219 @ary = (12,23,34,45,56);
221 print "not " unless shift(@ary) == 12;
224 print "not " unless pop(@ary) == 56;
227 print "not " unless push(@ary,56) == 4;
230 print "not " unless unshift(@ary,12) == 5;
235 $foo[1] eq "a" or print "not ";