Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / perl5 / t / op / list.t
1 #!./perl
2
3 # $RCSfile: list.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:02 $
4
5 print "1..27\n";
6
7 @foo = (1, 2, 3, 4);
8 if ($foo[0] == 1 && $foo[3] == 4) {print "ok 1\n";} else {print "not ok 1\n";}
9
10 $_ = join(':',@foo);
11 if ($_ eq '1:2:3:4') {print "ok 2\n";} else {print "not ok 2\n";}
12
13 ($a,$b,$c,$d) = (1,2,3,4);
14 if ("$a;$b;$c;$d" eq '1;2;3;4') {print "ok 3\n";} else {print "not ok 3\n";}
15
16 ($c,$b,$a) = split(/ /,"111 222 333");
17 if ("$a;$b;$c" eq '333;222;111') {print "ok 4\n";} else {print "not ok 4\n";}
18
19 ($a,$b,$c) = ($c,$b,$a);
20 if ("$a;$b;$c" eq '111;222;333') {print "ok 5\n";} else {print "not ok 5 $a;$b;$c\n";}
21
22 ($a, $b) = ($b, $a);
23 if ("$a;$b;$c" eq '222;111;333') {print "ok 6\n";} else {print "not ok 6\n";}
24
25 ($a, $b[1], $c{2}, $d) = (1, 2, 3, 4);
26 if ($a eq 1) {print "ok 7\n";} else {print "not ok 7\n";}
27 if ($b[1] eq 2) {print "ok 8\n";} else {print "not ok 8\n";}
28 if ($c{2} eq 3) {print "ok 9\n";} else {print "not ok 9\n";}
29 if ($d eq 4) {print "ok 10\n";} else {print "not ok 10\n";}
30
31 @foo = (1,2,3,4,5,6,7,8);
32 ($a, $b, $c, $d) = @foo;
33 print "#11      $a;$b;$c;$d eq 1;2;3;4\n";
34 if ("$a;$b;$c;$d" eq '1;2;3;4') {print "ok 11\n";} else {print "not ok 11\n";}
35
36 @foo = @bar = (1);
37 if (join(':',@foo,@bar) eq '1:1') {print "ok 12\n";} else {print "not ok 12\n";}
38
39 @foo = ();
40 @foo = 1+2+3;
41 if (join(':',@foo) eq '6') {print "ok 13\n";} else {print "not ok 13\n";}
42
43 for ($x = 0; $x < 3; $x++) {
44     ($a, $b, $c) = 
45             $x == 0?
46                     ('ok ', 14, "\n"):
47             $x == 1?
48                     ('ok ', 15, "\n"):
49             # default
50                     ('ok ', 16, "\n");
51
52     print $a,$b,$c;
53 }
54
55 @a = ($x == 12345 || (1,2,3));
56 if (join('',@a) eq '123') {print "ok 17\n";} else {print "not ok 17\n";}
57
58 @a = ($x == $x || (4,5,6));
59 if (join('',@a) eq '1') {print "ok 18\n";} else {print "not ok 18\n";}
60
61 if (join('',1,2,(3,4,5)) eq '12345'){print "ok 19\n";}else{print "not ok 19\n";}
62 if (join('',(1,2,3,4,5)) eq '12345'){print "ok 20\n";}else{print "not ok 20\n";}
63 if (join('',(1,2,3,4),5) eq '12345'){print "ok 21\n";}else{print "not ok 21\n";}
64 if (join('',1,(2,3,4),5) eq '12345'){print "ok 22\n";}else{print "not ok 22\n";}
65 if (join('',1,2,(3,4),5) eq '12345'){print "ok 23\n";}else{print "not ok 23\n";}
66 if (join('',1,2,3,(4),5) eq '12345'){print "ok 24\n";}else{print "not ok 24\n";}
67
68 for ($x = 0; $x < 3; $x++) {
69     ($a, $b, $c) = do {
70             if ($x == 0) {
71                 ('ok ', 25, "\n");
72             }
73             elsif ($x == 1) {
74                 ('ok ', 26, "\n");
75             }
76             else {
77                 ('ok ', 27, "\n");
78             }
79         };
80
81     print $a,$b,$c;
82 }
83