1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!./perl
#
# test the logical operators '&&', '||', '!', 'and', 'or', 'not'
#
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
print "1..11\n";
my $test = 0;
for my $i (undef, 0 .. 2, "", "0 but true") {
my $true = 1;
my $false = 0;
for my $j (undef, 0 .. 2, "", "0 but true") {
$true &&= !(
((!$i || !$j) != !($i && $j))
or (!($i || $j) != (!$i && !$j))
or (!!($i || $j) != !(!$i && !$j))
or (!(!$i || !$j) != !!($i && $j))
);
$false ||= (
((!$i || !$j) == !!($i && $j))
and (!!($i || $j) == (!$i && !$j))
and ((!$i || $j) == ($i && !$j))
and (($i || !$j) != (!$i && $j))
);
}
if (not $true) {
print "not ";
} elsif ($false) {
print "not ";
}
print "ok ", ++$test, "\n";
}
# $test == 6
my $i = 0;
(($i ||= 1) &&= 3) += 4;
print "not " unless $i == 7;
print "ok ", ++$test, "\n";
my ($x, $y) = (1, 8);
$i = !$x || $y;
print "not " unless $i == 8;
print "ok ", ++$test, "\n";
++$y;
$i = !$x || !$x || !$x || $y;
print "not " unless $i == 9;
print "ok ", ++$test, "\n";
$x = 0;
++$y;
$i = !$x && $y;
print "not " unless $i == 10;
print "ok ", ++$test, "\n";
++$y;
$i = !$x && !$x && !$x && $y;
print "not " unless $i == 11;
print "ok ", ++$test, "\n";
|