Commit | Line | Data |
8d063cd8 |
1 | #!./perl |
2 | |
79a0689e |
3 | @tests = split(/\n/, <<EOF); |
4 | 0 3, 0 1 2, 3 4 5 6 7 |
5 | 0 0 a b c, , a b c 0 1 2 3 4 5 6 7 |
6 | 8 0 a b c, , 0 1 2 3 4 5 6 7 a b c |
7 | 7 0 6.5, , 0 1 2 3 4 5 6 6.5 7 |
8 | 1 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 |
9 | 0 1 a, 0, a 1 2 3 4 5 6 7 |
10 | 1 6 x y z, 1 2 3 4 5 6, 0 x y z 7 |
11 | 0 7 x y z, 0 1 2 3 4 5 6, x y z 7 |
12 | 1 7 x y z, 1 2 3 4 5 6 7, 0 x y z |
13 | 4, 4 5 6 7, 0 1 2 3 |
14 | -4, 4 5 6 7, 0 1 2 3 |
15 | EOF |
16 | |
c6aa4a32 |
17 | print "1..", 4 + @tests, "\n"; |
79a0689e |
18 | die "blech" unless @tests; |
8d063cd8 |
19 | |
20 | @x = (1,2,3); |
21 | push(@x,@x); |
a687059c |
22 | if (join(':',@x) eq '1:2:3:1:2:3') {print "ok 1\n";} else {print "not ok 1\n";} |
a60c0954 |
23 | push(@x,4); |
a687059c |
24 | if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 2\n";} else {print "not ok 2\n";} |
79a0689e |
25 | |
c6aa4a32 |
26 | # test for push/pop intuiting @ on array |
27 | push(x,3); |
28 | if (join(':',@x) eq '1:2:3:1:2:3:4:3') {print "ok 3\n";} else {print "not ok 3\n";} |
29 | pop(x); |
30 | if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 4\n";} else {print "not ok 4\n";} |
31 | |
32 | $test = 5; |
79a0689e |
33 | foreach $line (@tests) { |
34 | ($list,$get,$leave) = split(/,\t*/,$line); |
79072805 |
35 | ($pos, $len, @list) = split(' ',$list); |
79a0689e |
36 | @get = split(' ',$get); |
37 | @leave = split(' ',$leave); |
38 | @x = (0,1,2,3,4,5,6,7); |
79072805 |
39 | if (defined $len) { |
40 | @got = splice(@x, $pos, $len, @list); |
41 | } |
42 | else { |
43 | @got = splice(@x, $pos); |
44 | } |
79a0689e |
45 | if (join(':',@got) eq join(':',@get) && |
46 | join(':',@x) eq join(':',@leave)) { |
47 | print "ok ",$test++,"\n"; |
48 | } |
49 | else { |
50 | print "not ok ",$test++," got: @got == @get left: @x == @leave\n"; |
51 | } |
52 | } |
53 | |
a60c0954 |
54 | 1; # this file is require'd by lib/tie-stdpush.t |