Commit | Line | Data |
a687059c |
1 | #!./perl |
2 | |
24aef97f |
3 | print "1..31\n"; |
a687059c |
4 | |
210db7fc |
5 | my $Is_EBCDIC = (ord('A') == 193) ? 1 : 0; |
6 | |
a687059c |
7 | print vec($foo,0,1) == 0 ? "ok 1\n" : "not ok 1\n"; |
8 | print length($foo) == 0 ? "ok 2\n" : "not ok 2\n"; |
9 | vec($foo,0,1) = 1; |
10 | print length($foo) == 1 ? "ok 3\n" : "not ok 3\n"; |
a0ed51b3 |
11 | print unpack('C',$foo) == 1 ? "ok 4\n" : "not ok 4\n"; |
a687059c |
12 | print vec($foo,0,1) == 1 ? "ok 5\n" : "not ok 5\n"; |
13 | |
14 | print vec($foo,20,1) == 0 ? "ok 6\n" : "not ok 6\n"; |
15 | vec($foo,20,1) = 1; |
16 | print vec($foo,20,1) == 1 ? "ok 7\n" : "not ok 7\n"; |
17 | print length($foo) == 3 ? "ok 8\n" : "not ok 8\n"; |
18 | print vec($foo,1,8) == 0 ? "ok 9\n" : "not ok 9\n"; |
19 | vec($foo,1,8) = 0xf1; |
20 | print vec($foo,1,8) == 0xf1 ? "ok 10\n" : "not ok 10\n"; |
a0ed51b3 |
21 | print ((unpack('C',substr($foo,1,1)) & 255) == 0xf1 ? "ok 11\n" : "not ok 11\n"); |
a687059c |
22 | print vec($foo,2,4) == 1 ? "ok 12\n" : "not ok 12\n"; |
23 | print vec($foo,3,4) == 15 ? "ok 13\n" : "not ok 13\n"; |
deb3007b |
24 | vec($Vec, 0, 32) = 0xbaddacab; |
25 | print $Vec eq "\xba\xdd\xac\xab" ? "ok 14\n" : "not ok 14\n"; |
26 | print vec($Vec, 0, 32) == 3135089835 ? "ok 15\n" : "not ok 15\n"; |
a687059c |
27 | |
4ebbc975 |
28 | # ensure vec() handles numericalness correctly |
29 | $foo = $bar = $baz = 0; |
30 | vec($foo = 0,0,1) = 1; |
31 | vec($bar = 0,1,1) = 1; |
32 | $baz = $foo | $bar; |
33 | print $foo eq "1" && $foo == 1 ? "ok 16\n" : "not ok 16\n"; |
34 | print $bar eq "2" && $bar == 2 ? "ok 17\n" : "not ok 17\n"; |
35 | print "$foo $bar $baz" eq "1 2 3" ? "ok 18\n" : "not ok 18\n"; |
fe58ced6 |
36 | |
37 | # error cases |
38 | |
39 | $x = eval { vec $foo, 0, 3 }; |
40 | print "not " if defined $x or $@ !~ /^Illegal number of bits in vec/; |
41 | print "ok 19\n"; |
42 | $x = eval { vec $foo, 0, 0 }; |
43 | print "not " if defined $x or $@ !~ /^Illegal number of bits in vec/; |
44 | print "ok 20\n"; |
45 | $x = eval { vec $foo, 0, -13 }; |
46 | print "not " if defined $x or $@ !~ /^Illegal number of bits in vec/; |
47 | print "ok 21\n"; |
48 | $x = eval { vec($foo, -1, 4) = 2 }; |
ed9aa3b7 |
49 | print "not " if defined $x or $@ !~ /^Negative offset to vec in lvalue context/; |
fe58ced6 |
50 | print "ok 22\n"; |
51 | print "not " if vec('abcd', 7, 8); |
52 | print "ok 23\n"; |
246fae53 |
53 | |
54 | # UTF8 |
55 | # N.B. currently curiously coded to circumvent bugs elswhere in UTF8 handling |
56 | |
57 | $foo = "\x{100}" . "\xff\xfe"; |
58 | $x = substr $foo, 1; |
59 | print "not " if vec($x, 0, 8) != 255; |
60 | print "ok 24\n"; |
61 | eval { vec($foo, 1, 8) }; |
33b45480 |
62 | print "not " if $@; |
246fae53 |
63 | print "ok 25\n"; |
64 | eval { vec($foo, 1, 8) = 13 }; |
33b45480 |
65 | print "not " if $@; |
246fae53 |
66 | print "ok 26\n"; |
210db7fc |
67 | if ($Is_EBCDIC) { |
68 | print "not " if $foo ne "\x8c\x0d\xff\x8a\x69"; |
69 | print "ok 27\n"; |
70 | } |
71 | else { |
72 | print "not " if $foo ne "\xc4\x0d\xc3\xbf\xc3\xbe"; |
73 | print "ok 27\n"; |
74 | } |
33b45480 |
75 | $foo = "\x{100}" . "\xff\xfe"; |
246fae53 |
76 | $x = substr $foo, 1; |
77 | vec($x, 2, 4) = 7; |
78 | print "not " if $x ne "\xff\xf7"; |
79 | print "ok 28\n"; |
80 | |
81 | # mixed magic |
82 | |
83 | $foo = "\x61\x62\x63\x64\x65\x66"; |
84 | print "not " if vec(substr($foo, 2, 2), 0, 16) != 25444; |
85 | print "ok 29\n"; |
86 | vec(substr($foo, 1,3), 5, 4) = 3; |
87 | print "not " if $foo ne "\x61\x62\x63\x34\x65\x66"; |
88 | print "ok 30\n"; |
24aef97f |
89 | |
90 | # A variation of [perl #20933] |
91 | { |
92 | my $s = ""; |
93 | vec($s, 0, 1) = 0; |
94 | vec($s, 1, 1) = 1; |
95 | my @r; |
96 | $r[$_] = \ vec $s, $_, 1 for (0, 1); |
97 | print "not " if (${ $r[0] } != 0 || ${ $r[1] } != 1); |
98 | print "ok 31\n"; |
99 | } |