This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Test case for C<undef %File::Glob::>
[perl5.git] / t / op / push.t
CommitLineData
8d063cd8
LW
1#!./perl
2
79072805 3# $RCSfile: push.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:13 $
8d063cd8 4
79a0689e
LW
5@tests = split(/\n/, <<EOF);
60 3, 0 1 2, 3 4 5 6 7
70 0 a b c, , a b c 0 1 2 3 4 5 6 7
88 0 a b c, , 0 1 2 3 4 5 6 7 a b c
97 0 6.5, , 0 1 2 3 4 5 6 6.5 7
101 0 a b c d e f g h i j,, 0 a b c d e f g h i j 1 2 3 4 5 6 7
110 1 a, 0, a 1 2 3 4 5 6 7
121 6 x y z, 1 2 3 4 5 6, 0 x y z 7
130 7 x y z, 0 1 2 3 4 5 6, x y z 7
141 7 x y z, 1 2 3 4 5 6 7, 0 x y z
154, 4 5 6 7, 0 1 2 3
16-4, 4 5 6 7, 0 1 2 3
17EOF
18
c6aa4a32 19print "1..", 4 + @tests, "\n";
79a0689e 20die "blech" unless @tests;
8d063cd8
LW
21
22@x = (1,2,3);
23push(@x,@x);
a687059c 24if (join(':',@x) eq '1:2:3:1:2:3') {print "ok 1\n";} else {print "not ok 1\n";}
a60c0954 25push(@x,4);
a687059c 26if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 2\n";} else {print "not ok 2\n";}
79a0689e 27
c6aa4a32
SP
28# test for push/pop intuiting @ on array
29push(x,3);
30if (join(':',@x) eq '1:2:3:1:2:3:4:3') {print "ok 3\n";} else {print "not ok 3\n";}
31pop(x);
32if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 4\n";} else {print "not ok 4\n";}
33
34$test = 5;
79a0689e
LW
35foreach $line (@tests) {
36 ($list,$get,$leave) = split(/,\t*/,$line);
79072805 37 ($pos, $len, @list) = split(' ',$list);
79a0689e
LW
38 @get = split(' ',$get);
39 @leave = split(' ',$leave);
40 @x = (0,1,2,3,4,5,6,7);
79072805
LW
41 if (defined $len) {
42 @got = splice(@x, $pos, $len, @list);
43 }
44 else {
45 @got = splice(@x, $pos);
46 }
79a0689e
LW
47 if (join(':',@got) eq join(':',@get) &&
48 join(':',@x) eq join(':',@leave)) {
49 print "ok ",$test++,"\n";
50 }
51 else {
52 print "not ok ",$test++," got: @got == @get left: @x == @leave\n";
53 }
54}
55
a60c0954 561; # this file is require'd by lib/tie-stdpush.t