[perl #25160] ':flock' not recognized unless it's first
[p5sagit/p5-mst-13.2.git] / t / op / bop.t
CommitLineData
ddb9d9dc 1#!./perl
2
3#
55497cff 4# test the bit operators '&', '|', '^', '~', '<<', and '>>'
ddb9d9dc 5#
6
d1f8c7a4 7BEGIN {
8 chdir 't' if -d 't';
20822f61 9 @INC = '../lib';
d1f8c7a4 10}
11
d0a21e00 12print "1..145\n";
ddb9d9dc 13
14# numerics
15print ((0xdead & 0xbeef) == 0x9ead ? "ok 1\n" : "not ok 1\n");
16print ((0xdead | 0xbeef) == 0xfeef ? "ok 2\n" : "not ok 2\n");
17print ((0xdead ^ 0xbeef) == 0x6042 ? "ok 3\n" : "not ok 3\n");
55497cff 18print ((~0xdead & 0xbeef) == 0x2042 ? "ok 4\n" : "not ok 4\n");
19
20# shifts
21print ((257 << 7) == 32896 ? "ok 5\n" : "not ok 5\n");
22print ((33023 >> 7) == 257 ? "ok 6\n" : "not ok 6\n");
23
24# signed vs. unsigned
25print ((~0 > 0 && do { use integer; ~0 } == -1)
26 ? "ok 7\n" : "not ok 7\n");
d1f8c7a4 27
28my $bits = 0;
29for (my $i = ~0; $i; $i >>= 1) { ++$bits; }
30my $cusp = 1 << ($bits - 1);
31
32print ((($cusp & -1) > 0 && do { use integer; $cusp & -1 } < 0)
55497cff 33 ? "ok 8\n" : "not ok 8\n");
d1f8c7a4 34print ((($cusp | 1) > 0 && do { use integer; $cusp | 1 } < 0)
55497cff 35 ? "ok 9\n" : "not ok 9\n");
d1f8c7a4 36print ((($cusp ^ 1) > 0 && do { use integer; $cusp ^ 1 } < 0)
55497cff 37 ? "ok 10\n" : "not ok 10\n");
d1f8c7a4 38print (((1 << ($bits - 1)) == $cusp &&
39 do { use integer; 1 << ($bits - 1) } == -$cusp)
55497cff 40 ? "ok 11\n" : "not ok 11\n");
d1f8c7a4 41print ((($cusp >> 1) == ($cusp / 2) &&
85e0ebd8 42 do { use integer; abs($cusp >> 1) } == ($cusp / 2))
55497cff 43 ? "ok 12\n" : "not ok 12\n");
ddb9d9dc 44
9d116dd7 45$Aaz = chr(ord("A") & ord("z"));
46$Aoz = chr(ord("A") | ord("z"));
47$Axz = chr(ord("A") ^ ord("z"));
48
ddb9d9dc 49# short strings
9d116dd7 50print (("AAAAA" & "zzzzz") eq ($Aaz x 5) ? "ok 13\n" : "not ok 13\n");
51print (("AAAAA" | "zzzzz") eq ($Aoz x 5) ? "ok 14\n" : "not ok 14\n");
52print (("AAAAA" ^ "zzzzz") eq ($Axz x 5) ? "ok 15\n" : "not ok 15\n");
ddb9d9dc 53
54# long strings
55$foo = "A" x 150;
56$bar = "z" x 75;
9d116dd7 57$zap = "A" x 75;
58# & truncates
59print (($foo & $bar) eq ($Aaz x 75 ) ? "ok 16\n" : "not ok 16\n");
60# | does not truncate
61print (($foo | $bar) eq ($Aoz x 75 . $zap) ? "ok 17\n" : "not ok 17\n");
62# ^ does not truncate
63print (($foo ^ $bar) eq ($Axz x 75 . $zap) ? "ok 18\n" : "not ok 18\n");
64
0c57e439 65#
66print "ok \xFF\xFF\n" & "ok 19\n";
67print "ok 20\n" | "ok \0\0\n";
68print "o\000 \0001\000" ^ "\000k\0002\000\n";
69
70#
71print "ok \x{FF}\x{FF}\n" & "ok 22\n";
72print "ok 23\n" | "ok \x{0}\x{0}\n";
73print "o\x{0} \x{0}4\x{0}" ^ "\x{0}k\x{0}2\x{0}\n";
74
75#
76print "ok 25\n" if sprintf("%vd", v4095 & v801) eq 801;
77print "ok 26\n" if sprintf("%vd", v4095 | v801) eq 4095;
78print "ok 27\n" if sprintf("%vd", v4095 ^ v801) eq 3294;
79
80#
81print "ok 28\n" if sprintf("%vd", v4095.801.4095 & v801.4095) eq '801.801';
82print "ok 29\n" if sprintf("%vd", v4095.801.4095 | v801.4095) eq '4095.4095.4095';
83print "ok 30\n" if sprintf("%vd", v801.4095 ^ v4095.801.4095) eq '3294.3294.4095';
2a4ebaa6 84#
1d68d6cd 85print "ok 31\n" if sprintf("%vd", v120.300 & v200.400) eq '72.256';
86print "ok 32\n" if sprintf("%vd", v120.300 | v200.400) eq '248.444';
87print "ok 33\n" if sprintf("%vd", v120.300 ^ v200.400) eq '176.188';
2a4ebaa6 88#
89my $a = v120.300;
90my $b = v200.400;
91$a ^= $b;
92print "ok 34\n" if sprintf("%vd", $a) eq '176.188';
93my $a = v120.300;
94my $b = v200.400;
95$a |= $b;
96print "ok 35\n" if sprintf("%vd", $a) eq '248.444';
3da1940a 97
1d68d6cd 98#
99# UTF8 ~ behaviour
3da1940a 100#
101
210db7fc 102my $Is_EBCDIC = (ord('A') == 193) ? 1 : 0;
103
3da1940a 104my @not36;
105
f0da931d 106for (0x100...0xFFF) {
1d68d6cd 107 $a = ~(chr $_);
210db7fc 108 if ($Is_EBCDIC) {
109 push @not36, sprintf("%#03X", $_)
110 if $a ne chr(~$_) or length($a) != 1;
111 }
112 else {
113 push @not36, sprintf("%#03X", $_)
114 if $a ne chr(~$_) or length($a) != 1 or ~$a ne chr($_);
115 }
3da1940a 116}
117if (@not36) {
a1ca4561 118 print "# test 36 failed\n";
3da1940a 119 print "not ";
1d68d6cd 120}
121print "ok 36\n";
122
3da1940a 123my @not37;
124
1d68d6cd 125for my $i (0xEEE...0xF00) {
126 for my $j (0x0..0x120) {
127 $a = ~(chr ($i) . chr $j);
210db7fc 128 if ($Is_EBCDIC) {
129 push @not37, sprintf("%#03X %#03X", $i, $j)
130 if $a ne chr(~$i).chr(~$j) or
131 length($a) != 2;
132 }
133 else {
134 push @not37, sprintf("%#03X %#03X", $i, $j)
135 if $a ne chr(~$i).chr(~$j) or
136 length($a) != 2 or
137 ~$a ne chr($i).chr($j);
138 }
1d68d6cd 139 }
140}
3da1940a 141if (@not37) {
a1ca4561 142 print "# test 37 failed\n";
3da1940a 143 print "not ";
144}
1d68d6cd 145print "ok 37\n";
f0da931d 146
210db7fc 147print "not " unless ~chr(~0) eq "\0" or $Is_EBCDIC;
f0da931d 148print "ok 38\n";
a1ca4561 149
150my @not39;
151
152for my $i (0x100..0x120) {
153 for my $j (0x100...0x120) {
154 push @not39, sprintf("%#03X %#03X", $i, $j)
155 if ~(chr($i)|chr($j)) ne (~chr($i)&~chr($j));
156 }
157}
158if (@not39) {
159 print "# test 39 failed\n";
160 print "not ";
161}
162print "ok 39\n";
163
164my @not40;
165
166for my $i (0x100..0x120) {
167 for my $j (0x100...0x120) {
168 push @not40, sprintf("%#03X %#03X", $i, $j)
169 if ~(chr($i)&chr($j)) ne (~chr($i)|~chr($j));
170 }
171}
172if (@not40) {
173 print "# test 40 failed\n";
174 print "not ";
175}
176print "ok 40\n";
299b089d 177
178# More variations on 19 and 22.
179print "ok \xFF\x{FF}\n" & "ok 41\n";
180print "ok \x{FF}\xFF\n" & "ok 42\n";
66a74c25 181
182# Tests to see if you really can do casts negative floats to unsigned properly
183$neg1 = -1.0;
184print ((~ $neg1 == 0) ? "ok 43\n" : "not ok 43\n");
185$neg7 = -7.0;
186print ((~ $neg7 == 6) ? "ok 44\n" : "not ok 44\n");
891f9566 187
188require "./test.pl";
189curr_test(45);
190
191# double magic tests
192
193sub TIESCALAR { bless { value => $_[1], orig => $_[1] } }
194sub STORE { $_[0]{store}++; $_[0]{value} = $_[1] }
195sub FETCH { $_[0]{fetch}++; $_[0]{value} }
196sub stores { tied($_[0])->{value} = tied($_[0])->{orig};
197 delete(tied($_[0])->{store}) || 0 }
198sub fetches { delete(tied($_[0])->{fetch}) || 0 }
199
200# numeric double magic tests
201
202tie $x, "main", 1;
203tie $y, "main", 3;
204
205is(($x | $y), 3);
206is(fetches($x), 1);
207is(fetches($y), 1);
208is(stores($x), 0);
209is(stores($y), 0);
210
211is(($x & $y), 1);
212is(fetches($x), 1);
213is(fetches($y), 1);
214is(stores($x), 0);
215is(stores($y), 0);
216
217is(($x ^ $y), 2);
218is(fetches($x), 1);
219is(fetches($y), 1);
220is(stores($x), 0);
221is(stores($y), 0);
222
223is(($x |= $y), 3);
224is(fetches($x), 2);
225is(fetches($y), 1);
226is(stores($x), 1);
227is(stores($y), 0);
228
229is(($x &= $y), 1);
230is(fetches($x), 2);
231is(fetches($y), 1);
232is(stores($x), 1);
233is(stores($y), 0);
234
235is(($x ^= $y), 2);
236is(fetches($x), 2);
237is(fetches($y), 1);
238is(stores($x), 1);
239is(stores($y), 0);
240
241is(~~$y, 3);
242is(fetches($y), 1);
243is(stores($y), 0);
244
245{ use integer;
246
247is(($x | $y), 3);
248is(fetches($x), 1);
249is(fetches($y), 1);
250is(stores($x), 0);
251is(stores($y), 0);
252
253is(($x & $y), 1);
254is(fetches($x), 1);
255is(fetches($y), 1);
256is(stores($x), 0);
257is(stores($y), 0);
258
259is(($x ^ $y), 2);
260is(fetches($x), 1);
261is(fetches($y), 1);
262is(stores($x), 0);
263is(stores($y), 0);
264
265is(($x |= $y), 3);
266is(fetches($x), 2);
267is(fetches($y), 1);
268is(stores($x), 1);
269is(stores($y), 0);
270
271is(($x &= $y), 1);
272is(fetches($x), 2);
273is(fetches($y), 1);
274is(stores($x), 1);
275is(stores($y), 0);
276
277is(($x ^= $y), 2);
278is(fetches($x), 2);
279is(fetches($y), 1);
280is(stores($x), 1);
281is(stores($y), 0);
282
283is(~$y, -4);
284is(fetches($y), 1);
285is(stores($y), 0);
286
287} # end of use integer;
288
289# stringwise double magic tests
290
291tie $x, "main", "a";
292tie $y, "main", "c";
293
294is(($x | $y), ("a" | "c"));
295is(fetches($x), 1);
296is(fetches($y), 1);
297is(stores($x), 0);
298is(stores($y), 0);
299
300is(($x & $y), ("a" & "c"));
301is(fetches($x), 1);
302is(fetches($y), 1);
303is(stores($x), 0);
304is(stores($y), 0);
305
306is(($x ^ $y), ("a" ^ "c"));
307is(fetches($x), 1);
308is(fetches($y), 1);
309is(stores($x), 0);
310is(stores($y), 0);
311
312is(($x |= $y), ("a" | "c"));
313is(fetches($x), 2);
314is(fetches($y), 1);
315is(stores($x), 1);
316is(stores($y), 0);
317
318is(($x &= $y), ("a" & "c"));
319is(fetches($x), 2);
320is(fetches($y), 1);
321is(stores($x), 1);
322is(stores($y), 0);
323
324is(($x ^= $y), ("a" ^ "c"));
325is(fetches($x), 2);
326is(fetches($y), 1);
327is(stores($x), 1);
328is(stores($y), 0);
329
330is(~~$y, "c");
331is(fetches($y), 1);
332is(stores($y), 0);
d0a21e00 333
334$a = "\0\x{100}"; chop($a);
335ok(utf8::is_utf8($a)); # make sure UTF8 flag is still there
336$a = ~$a;
337is($a, "\xFF", "~ works with utf-8");