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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = ('.', '../lib');
}
require 'test.pl';
plan (125);
#
# @foo, @bar, and @ary are also used from tie-stdarray after tie-ing them
#
@ary = (1,2,3,4,5);
is(join('',@ary), '12345');
$tmp = $ary[$#ary]; --$#ary;
is($tmp, 5);
is($#ary, 3);
is(join('',@ary), '1234');
$[ = 1;
@ary = (1,2,3,4,5);
is(join('',@ary), '12345');
$tmp = $ary[$#ary]; --$#ary;
is($tmp, 5);
# Must do == here beacuse $[ isn't 0
ok($#ary == 4);
is(join('',@ary), '1234');
is($ary[5], undef);
$#ary += 1; # see if element 5 gone for good
ok($#ary == 5);
ok(!defined $ary[5]);
$[ = 0;
@foo = ();
$r = join(',', $#foo, @foo);
is($r, "-1");
$foo[0] = '0';
$r = join(',', $#foo, @foo);
is($r, "0,0");
$foo[2] = '2';
$r = join(',', $#foo, @foo);
is($r, "2,0,,2");
@bar = ();
$bar[0] = '0';
$bar[1] = '1';
$r = join(',', $#bar, @bar);
is($r, "1,0,1");
@bar = ();
$r = join(',', $#bar, @bar);
is($r, "-1");
$bar[0] = '0';
$r = join(',', $#bar, @bar);
is($r, "0,0");
$bar[2] = '2';
$r = join(',', $#bar, @bar);
is($r, "2,0,,2");
reset 'b' if $^O ne 'VMS';
@bar = ();
$bar[0] = '0';
$r = join(',', $#bar, @bar);
is($r, "0,0");
$bar[2] = '2';
$r = join(',', $#bar, @bar);
is($r, "2,0,,2");
$foo = 'now is the time';
ok(scalar (($F1,$F2,$Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/)));
is($F1, 'now');
is($F2, 'is');
is($Etc, 'the time');
$foo = 'lskjdf';
ok(!($cnt = (($F1,$F2,$Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/))))
or diag("$cnt $F1:$F2:$Etc");
%foo = ('blurfl','dyick','foo','bar','etc.','etc.');
%bar = %foo;
is($bar{'foo'}, 'bar');
%bar = ();
is($bar{'foo'}, undef);
(%bar,$a,$b) = (%foo,'how','now');
is($bar{'foo'}, 'bar');
is($bar{'how'}, 'now');
@bar{keys %foo} = values %foo;
is($bar{'foo'}, 'bar');
is($bar{'how'}, 'now');
@foo = grep(/e/,split(' ','now is the time for all good men to come to'));
is(join(' ',@foo), 'the time men come');
@foo = grep(!/e/,split(' ','now is the time for all good men to come to'));
is(join(' ',@foo), 'now is for all good to to');
$foo = join('',('a','b','c','d','e','f')[0..5]);
is($foo, 'abcdef');
$foo = join('',('a','b','c','d','e','f')[0..1]);
is($foo, 'ab');
$foo = join('',('a','b','c','d','e','f')[6]);
is($foo, '');
@foo = ('a','b','c','d','e','f')[0,2,4];
@bar = ('a','b','c','d','e','f')[1,3,5];
$foo = join('',(@foo,@bar)[0..5]);
is($foo, 'acebdf');
$foo = ('a','b','c','d','e','f')[0,2,4];
is($foo, 'e');
$foo = ('a','b','c','d','e','f')[1];
is($foo, 'b');
@foo = ( 'foo', 'bar', 'burbl');
push(foo, 'blah');
is($#foo, 3);
# various AASSIGN_COMMON checks (see newASSIGNOP() in op.c)
#curr_test(38);
@foo = @foo;
is("@foo", "foo bar burbl blah"); # 38
(undef,@foo) = @foo;
is("@foo", "bar burbl blah"); # 39
@foo = ('XXX',@foo, 'YYY');
is("@foo", "XXX bar burbl blah YYY"); # 40
@foo = @foo = qw(foo b\a\r bu\\rbl blah);
is("@foo", 'foo b\a\r bu\\rbl blah'); # 41
@bar = @foo = qw(foo bar); # 42
is("@foo", "foo bar");
is("@bar", "foo bar"); # 43
# try the same with local
# XXX tie-stdarray fails the tests involving local, so we use
# different variable names to escape the 'tie'
@bee = ( 'foo', 'bar', 'burbl', 'blah');
{
local @bee = @bee;
is("@bee", "foo bar burbl blah"); # 44
{
local (undef,@bee) = @bee;
is("@bee", "bar burbl blah"); # 45
{
local @bee = ('XXX',@bee,'YYY');
is("@bee", "XXX bar burbl blah YYY"); # 46
{
local @bee = local(@bee) = qw(foo bar burbl blah);
is("@bee", "foo bar burbl blah"); # 47
{
local (@bim) = local(@bee) = qw(foo bar);
is("@bee", "foo bar"); # 48
is("@bim", "foo bar"); # 49
}
is("@bee", "foo bar burbl blah"); # 50
}
is("@bee", "XXX bar burbl blah YYY"); # 51
}
is("@bee", "bar burbl blah"); # 52
}
is("@bee", "foo bar burbl blah"); # 53
}
# try the same with my
{
my @bee = @bee;
is("@bee", "foo bar burbl blah"); # 54
{
my (undef,@bee) = @bee;
is("@bee", "bar burbl blah"); # 55
{
my @bee = ('XXX',@bee,'YYY');
is("@bee", "XXX bar burbl blah YYY"); # 56
{
my @bee = my @bee = qw(foo bar burbl blah);
is("@bee", "foo bar burbl blah"); # 57
{
my (@bim) = my(@bee) = qw(foo bar);
is("@bee", "foo bar"); # 58
is("@bim", "foo bar"); # 59
}
is("@bee", "foo bar burbl blah"); # 60
}
is("@bee", "XXX bar burbl blah YYY"); # 61
}
is("@bee", "bar burbl blah"); # 62
}
is("@bee", "foo bar burbl blah"); # 63
}
# try the same with our (except that previous values aren't restored)
{
our @bee = @bee;
is("@bee", "foo bar burbl blah");
{
our (undef,@bee) = @bee;
is("@bee", "bar burbl blah");
{
our @bee = ('XXX',@bee,'YYY');
is("@bee", "XXX bar burbl blah YYY");
{
our @bee = our @bee = qw(foo bar burbl blah);
is("@bee", "foo bar burbl blah");
{
our (@bim) = our(@bee) = qw(foo bar);
is("@bee", "foo bar");
is("@bim", "foo bar");
}
}
}
}
}
# make sure reification behaves
my $t = curr_test();
sub reify { $_[1] = $t++; print "@_\n"; }
reify('ok');
reify('ok');
curr_test($t);
# qw() is no longer a runtime split, it's compiletime.
is (qw(foo bar snorfle)[2], 'snorfle');
@ary = (12,23,34,45,56);
is(shift(@ary), 12);
is(pop(@ary), 56);
is(push(@ary,56), 4);
is(unshift(@ary,12), 5);
sub foo { "a" }
@foo=(foo())[0,0];
is ($foo[1], "a");
# $[ should have the same effect regardless of whether the aelem
# op is optimized to aelemfast.
sub tary {
local $[ = 10;
my $five = 5;
is ($tary[5], $tary[$five]);
}
@tary = (0..50);
tary();
# bugid #15439 - clearing an array calls destructors which may try
# to modify the array - caused 'Attempt to free unreferenced scalar'
my $got = runperl (
prog => q{
sub X::DESTROY { @a = () }
@a = (bless {}, 'X');
@a = ();
},
stderr => 1
);
$got =~ s/\n/ /g;
is ($got, '');
# Test negative and funky indices.
{
my @a = 0..4;
is($a[-1], 4);
is($a[-2], 3);
is($a[-5], 0);
ok(!defined $a[-6]);
is($a[2.1] , 2);
is($a[2.9] , 2);
is($a[undef], 0);
is($a["3rd"], 3);
}
{
my @a;
eval '$a[-1] = 0';
like($@, qr/Modification of non-creatable array value attempted, subscript -1/, "\$a[-1] = 0");
}
sub test_arylen {
my $ref = shift;
local $^W = 1;
is ($$ref, undef, "\$# on freed array is undef");
my @warn;
local $SIG{__WARN__} = sub {push @warn, "@_"};
$$ref = 1000;
is (scalar @warn, 1);
like ($warn[0], qr/^Attempt to set length of freed array/);
}
{
my $a = \$#{[]};
# Need a new statement to make it go out of scope
test_arylen ($a);
test_arylen (do {my @a; \$#a});
}
{
use vars '@array';
my $outer = \$#array;
is ($$outer, -1);
is (scalar @array, 0);
$$outer = 3;
is ($$outer, 3);
is (scalar @array, 4);
my $ref = \@array;
my $inner;
{
local @array;
$inner = \$#array;
is ($$inner, -1);
is (scalar @array, 0);
$$outer = 6;
is (scalar @$ref, 7);
is ($$inner, -1);
is (scalar @array, 0);
$$inner = 42;
}
is (scalar @array, 7);
is ($$outer, 6);
is ($$inner, undef, "orphaned $#foo is always undef");
is (scalar @array, 7);
is ($$outer, 6);
$$inner = 1;
is (scalar @array, 7);
is ($$outer, 6);
$$inner = 503; # Bang!
is (scalar @array, 7);
is ($$outer, 6);
}
{
# Bug #36211
use vars '@array';
for (1,2) {
{
local @a;
is ($#a, -1);
@a=(1..4)
}
}
}
{
# Bug #37350
my @array = (1..4);
$#{@array} = 7;
is ($#{4}, 7);
my $x;
$#{$x} = 3;
is(scalar @$x, 4);
push @{@array}, 23;
is ($4[8], 23);
}
{
# Bug #37350 -- once more with a global
use vars '@array';
@array = (1..4);
$#{@array} = 7;
is ($#{4}, 7);
my $x;
$#{$x} = 3;
is(scalar @$x, 4);
push @{@array}, 23;
is ($4[8], 23);
}
# more tests for AASSIGN_COMMON
{
our($x,$y,$z) = (1..3);
our($y,$z) = ($x,$y);
is("$x $y $z", "1 1 2");
}
{
our($x,$y,$z) = (1..3);
(our $y, our $z) = ($x,$y);
is("$x $y $z", "1 1 2");
}
"We're included by lib/Tie/Array/std.t so we need to return something true";
|