This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 4.0.00: (no release announcement available)
[perl5.git] / t / op / push.t
CommitLineData
8d063cd8
LW
1#!./perl
2
fe14fcc3 3# $Header: push.t,v 4.0 91/03/20 01:54:07 lwall Locked $
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
19print "1..", 2 + @tests, "\n";
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";}
8d063cd8 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
LW
27
28$test = 3;
29foreach $line (@tests) {
30 ($list,$get,$leave) = split(/,\t*/,$line);
31 @list = split(' ',$list);
32 @get = split(' ',$get);
33 @leave = split(' ',$leave);
34 @x = (0,1,2,3,4,5,6,7);
35 @got = splice(@x,@list);
36 if (join(':',@got) eq join(':',@get) &&
37 join(':',@x) eq join(':',@leave)) {
38 print "ok ",$test++,"\n";
39 }
40 else {
41 print "not ok ",$test++," got: @got == @get left: @x == @leave\n";
42 }
43}
44