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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
# This file has been placed in t/opbasic to indicate that it should not use
# functions imported from t/test.pl or Test::More, as those programs/libraries
# use operators which are what is being tested in this file.
# 2s complement assumption. Will not break test, just makes the internals of
# the SVs less interesting if were not on 2s complement system.
my $uv_max = ~0;
my $uv_maxm1 = ~0 ^ 1;
my $uv_big = $uv_max;
$uv_big = ($uv_big - 20000) | 1;
my ($iv0, $iv1, $ivm1, $iv_min, $iv_max, $iv_big, $iv_small);
$iv_max = $uv_max; # Do copy, *then* divide
$iv_max /= 2;
$iv_min = $iv_max;
{
use integer;
$iv0 = 2 - 2;
$iv1 = 3 - 2;
$ivm1 = 2 - 3;
$iv_max -= 1;
$iv_min += 0;
$iv_big = $iv_max - 3;
$iv_small = $iv_min + 2;
}
my $uv_bigi = $iv_big;
$uv_bigi |= 0x0;
my @array = qw(perl rules);
my @raw, @upgraded, @utf8;
foreach ("\x{1F4A9}", chr(163), 'N') {
push @raw, $_;
my $temp = $_ . chr 256;
chop $temp;
push @upgraded, $temp;
my $utf8 = $_;
next if utf8::upgrade($utf8) == length $_;
utf8::encode($utf8);
push @utf8, $utf8;
}
# Seems one needs to perform the maths on 'Inf' to get the NV correctly primed.
@FOO = ('s', 'N/A', 'a', 'NaN', -1, undef, 0, 1, 3.14, 1e37, 0.632120558, -.5,
'Inf'+1, '-Inf'-1, 0x0, 0x1, 0x5, 0xFFFFFFFF, $uv_max, $uv_maxm1,
$uv_big, $uv_bigi, $iv0, $iv1, $ivm1, $iv_min, $iv_max, $iv_big,
$iv_small, \$array[0], \$array[0], \$array[1], \$^X, @raw, @upgraded,
@utf8);
$expect = 7 * ($#FOO+2) * ($#FOO+1) + 6 * @raw + 6 * @utf8;
print "1..$expect\n";
my $bad_NaN = 0;
{
# gcc -ffast-math option may stop NaNs working correctly
use Config;
my $ccflags = $Config{ccflags} // '';
$bad_NaN = 1 if $ccflags =~ /-ffast-math\b/;
}
sub nok ($$$$$$$$) {
my ($test, $left, $threeway, $right, $result, $i, $j, $boolean) = @_;
$result = defined $result ? "'$result'" : 'undef';
if ($bad_NaN && ($left eq 'NaN' || $right eq 'NaN')) {
print "ok $test # skipping failed NaN test under -ffast-math\n";
}
else {
print "not ok $test # ($left $threeway $right) gives: $result \$i=$i \$j=$j, $boolean disagrees\n";
}
}
my $ok = 0;
for my $i (0..$#FOO) {
for my $j ($i..$#FOO) {
$ok++;
# Comparison routines may convert these internally, which would change
# what is used to determine the comparison on later runs. Hence copy
my ($i1, $i2, $i3, $i4, $i5, $i6, $i7, $i8, $i9, $i10,
$i11, $i12, $i13, $i14, $i15, $i16, $i17) =
($FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i],
$FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i],
$FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i], $FOO[$i]);
my ($j1, $j2, $j3, $j4, $j5, $j6, $j7, $j8, $j9, $j10,
$j11, $j12, $j13, $j14, $j15, $j16, $j17) =
($FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j],
$FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j],
$FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j], $FOO[$j]);
my $cmp = $i1 <=> $j1;
if (!defined($cmp) ? !($i2 < $j2)
: ($cmp == -1 && $i2 < $j2 ||
$cmp == 0 && !($i2 < $j2) ||
$cmp == 1 && !($i2 < $j2)))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '<');
}
$ok++;
if (!defined($cmp) ? !($i4 == $j4)
: ($cmp == -1 && !($i4 == $j4) ||
$cmp == 0 && $i4 == $j4 ||
$cmp == 1 && !($i4 == $j4)))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '==');
}
$ok++;
if (!defined($cmp) ? !($i5 > $j5)
: ($cmp == -1 && !($i5 > $j5) ||
$cmp == 0 && !($i5 > $j5) ||
$cmp == 1 && ($i5 > $j5)))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '>');
}
$ok++;
if (!defined($cmp) ? !($i6 >= $j6)
: ($cmp == -1 && !($i6 >= $j6) ||
$cmp == 0 && $i6 >= $j6 ||
$cmp == 1 && $i6 >= $j6))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '>=');
}
$ok++;
# OK, so the docs are wrong it seems. NaN != NaN
if (!defined($cmp) ? ($i7 != $j7)
: ($cmp == -1 && $i7 != $j7 ||
$cmp == 0 && !($i7 != $j7) ||
$cmp == 1 && $i7 != $j7))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '!=');
}
$ok++;
if (!defined($cmp) ? !($i8 <= $j8)
: ($cmp == -1 && $i8 <= $j8 ||
$cmp == 0 && $i8 <= $j8 ||
$cmp == 1 && !($i8 <= $j8)))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '<=');
}
$ok++;
my $pmc = $j16 <=> $i16; # cmp it in reverse
# Should give -ve of other answer, or undef for NaNs
# a + -a should be zero. not zero is truth. which avoids using ==
if (defined($cmp) ? !($cmp + $pmc) : !defined $pmc)
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, '<=>', $j3, $cmp, $i, $j, '<=> transposed');
}
# String comparisons
$ok++;
$cmp = $i9 cmp $j9;
if ($cmp == -1 && $i10 lt $j10 ||
$cmp == 0 && !($i10 lt $j10) ||
$cmp == 1 && !($i10 lt $j10))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'lt');
}
$ok++;
if ($cmp == -1 && !($i11 eq $j11) ||
$cmp == 0 && ($i11 eq $j11) ||
$cmp == 1 && !($i11 eq $j11))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'eq');
}
$ok++;
if ($cmp == -1 && !($i12 gt $j12) ||
$cmp == 0 && !($i12 gt $j12) ||
$cmp == 1 && ($i12 gt $j12))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'gt');
}
$ok++;
if ($cmp == -1 && $i13 le $j13 ||
$cmp == 0 && ($i13 le $j13) ||
$cmp == 1 && !($i13 le $j13))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'le');
}
$ok++;
if ($cmp == -1 && ($i14 ne $j14) ||
$cmp == 0 && !($i14 ne $j14) ||
$cmp == 1 && ($i14 ne $j14))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'ne');
}
$ok++;
if ($cmp == -1 && !($i15 ge $j15) ||
$cmp == 0 && ($i15 ge $j15) ||
$cmp == 1 && ($i15 ge $j15))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'ge');
}
$ok++;
$pmc = $j17 cmp $i17; # cmp it in reverse
# Should give -ve of other answer
# a + -a should be zero. not zero is truth. which avoids using ==
if (!($cmp + $pmc))
{
print "ok $ok\n";
}
else {
nok ($ok, $i3, 'cmp', $j3, $cmp, $i, $j, 'cmp transposed');
}
}
}
# We know the answers for these. We can rely on the consistency checks above
# to test the other string comparisons.
while (my ($i, $v) = each @raw) {
# Copy, to avoid any inadvertent conversion
my ($raw, $cooked, $not);
$raw = $v;
$cooked = $upgraded[$i];
$not = $raw eq $cooked ? '' : 'not ';
printf "%sok %d # eq, chr %d\n", $not, ++$ok, ord $raw;
$raw = $v;
$cooked = $upgraded[$i];
$not = $raw ne $cooked ? 'not ' : '';
printf "%sok %d # ne, chr %d\n", $not, ++$ok, ord $raw;
$raw = $v;
$cooked = $upgraded[$i];
$not = (($raw cmp $cooked) == 0) ? '' : 'not ';
printf "%sok %d # cmp, chr %d\n", $not, ++$ok, ord $raw;
# And now, transposed.
$raw = $v;
$cooked = $upgraded[$i];
$not = $cooked eq $raw ? '' : 'not ';
printf "%sok %d # eq, chr %d\n", $not, ++$ok, ord $raw;
$raw = $v;
$cooked = $upgraded[$i];
$not = $cooked ne $raw ? 'not ' : '';
printf "%sok %d # ne, chr %d\n", $not, ++$ok, ord $raw;
$raw = $v;
$cooked = $upgraded[$i];
$not = (($cooked cmp $raw) == 0) ? '' : 'not ';
printf "%sok %d # cmp, chr %d\n", $not, ++$ok, ord $raw;
}
while (my ($i, $v) = each @utf8) {
# Copy, to avoid any inadvertent conversion
my ($raw, $cooked, $not);
$raw = $raw[$i];
$cooked = $v;
$not = $raw eq $cooked ? 'not ' : '';
printf "%sok %d # eq vs octets, chr %d\n", $not, ++$ok, ord $raw;
$raw = $raw[$i];
$cooked = $v;
$not = $raw ne $cooked ? '' : 'not ';
printf "%sok %d # ne vs octets, chr %d\n", $not, ++$ok, ord $raw;
$raw = $raw[$i];
$cooked = $v;
$not = (($raw cmp $cooked) == 0) ? 'not ' : '';
printf "%sok %d # cmp vs octects, chr %d\n", $not, ++$ok, ord $raw;
# And now, transposed.
$raw = $raw[$i];
$cooked = $v;
$not = $cooked eq $raw ? 'not ' : '';
printf "%sok %d # eq vs octets, chr %d\n", $not, ++$ok, ord $raw;
$raw = $raw[$i];
$cooked = $v;
$not = $cooked ne $raw? '' : 'not ';
printf "%sok %d # ne vs octets, chr %d\n", $not, ++$ok, ord $raw;
$raw = $raw[$i];
$cooked = $v;
$not = (($cooked cmp $raw) == 0) ? 'not ' : '';
printf "%sok %d # cmp vs octects, chr %d\n", $not, ++$ok, ord $raw;
}
|