This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
re-implement OPpASSIGN_COMMON mechanism
[perl5.git] / t / op / infnan.t
CommitLineData
8c12dc63 1#!./perl -w
313d3d89
JH
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8
8c12dc63
JH
9use strict;
10
636a970b
JH
11use Config;
12
78c93c95
JH
13BEGIN {
14 if ($^O eq 'aix' && $Config{uselongdouble}) {
15 # FWIW: NaN actually seems to be working decently,
16 # but Inf is completely broken (e.g. Inf + 0 -> NaN).
17 skip_all "$^O with long doubles does not have sane inf/nan";
18 }
19}
20
313d3d89
JH
21my $PInf = "Inf" + 0;
22my $NInf = "-Inf" + 0;
6b322424
JH
23my $NaN;
24{
25 local $^W = 0; # warning-ness tested later.
26 $NaN = "NaN" + 0;
27}
313d3d89 28
8c12dc63 29my @PInf = ("Inf", "inf", "INF", "+Inf",
b8974fcb 30 "Infinity",
fae4db12 31 "1.#INF", "1#INF", "1.#INF00");
8c12dc63 32my @NInf = map { "-$_" } grep { ! /^\+/ } @PInf;
313d3d89
JH
33
34my @NaN = ("NAN", "nan", "qnan", "SNAN", "NanQ", "NANS",
fae4db12 35 "1.#QNAN", "+1#SNAN", "-1.#NAN", "1#IND", "1.#IND00",
1e9aa12f 36 "NAN(123)");
313d3d89 37
0c7df902 38my @printf_fmt = qw(e f g a d u o i b x p);
354b74ae 39my @packi_fmt = qw(c C s S l L i I n N v V j J w W U);
0c7df902 40my @packf_fmt = qw(f d F);
354b74ae 41my @packs_fmt = qw(a4 A4 Z5 b20 B20 h10 H10 u);
540a63d6 42
0c7df902
JH
43if ($Config{ivsize} == 8) {
44 push @packi_fmt, qw(q Q);
45}
38e1c50b 46
3e3c2fa4 47if ($Config{uselongdouble} && $Config{nvsize} > $Config{doublesize}) {
0c7df902
JH
48 push @packf_fmt, 'D';
49}
313d3d89 50
0c7df902 51# === Inf tests ===
313d3d89 52
0c7df902
JH
53cmp_ok($PInf, '>', 0, "positive infinity");
54cmp_ok($NInf, '<', 0, "negative infinity");
313d3d89 55
0c7df902
JH
56cmp_ok($PInf, '>', $NInf, "positive > negative");
57cmp_ok($NInf, '==', -$PInf, "negative == -positive");
58cmp_ok(-$NInf, '==', $PInf, "--negative == positive");
313d3d89 59
0c7df902
JH
60is($PInf, "Inf", "$PInf value stringifies as Inf");
61is($NInf, "-Inf", "$NInf value stringifies as -Inf");
8c12dc63 62
5bf8b78e
JH
63cmp_ok($PInf + 0, '==', $PInf, "+Inf + zero is +Inf");
64cmp_ok($NInf + 0, '==', $NInf, "-Inf + zero is -Inf");
65
66cmp_ok($PInf + 1, '==', $PInf, "+Inf + one is +Inf");
67cmp_ok($NInf + 1, '==', $NInf, "-Inf + one is -Inf");
68
69cmp_ok($PInf + $PInf, '==', $PInf, "+Inf + Inf is +Inf");
70cmp_ok($NInf + $NInf, '==', $NInf, "-Inf - Inf is -Inf");
71
0c7df902
JH
72cmp_ok($PInf * 2, '==', $PInf, "twice Inf is Inf");
73cmp_ok($PInf / 2, '==', $PInf, "half of Inf is Inf");
313d3d89 74
00c6bd38
JH
75cmp_ok($PInf * $PInf, '==', $PInf, "+Inf * +Inf is +Inf");
76cmp_ok($PInf * $NInf, '==', $NInf, "+Inf * -Inf is -Inf");
77cmp_ok($NInf * $PInf, '==', $NInf, "-Inf * +Inf is -Inf");
5bf8b78e 78cmp_ok($NInf * $NInf, '==', $PInf, "-Inf * -Inf is +Inf");
313d3d89 79
0c7df902
JH
80is(sprintf("%g", $PInf), "Inf", "$PInf sprintf %g is Inf");
81is(sprintf("%a", $PInf), "Inf", "$PInf sprintf %a is Inf");
d06c1c80 82
0c7df902
JH
83for my $f (@printf_fmt) {
84 is(sprintf("%$f", $PInf), "Inf", "$PInf sprintf %$f is Inf");
85}
d1877901 86
5d801ef3
JH
87is(sprintf("%+g", $PInf), "+Inf", "$PInf sprintf %+g");
88is(sprintf("%+g", $NInf), "-Inf", "$PInf sprintf %+g");
89
90is(sprintf("%4g", $PInf), " Inf", "$PInf sprintf %4g");
91is(sprintf("%-4g", $PInf), "Inf ", "$PInf sprintf %-4g");
92
93is(sprintf("%+-5g", $PInf), "+Inf ", "$PInf sprintf %+-5g");
94is(sprintf("%-+5g", $PInf), "+Inf ", "$PInf sprintf %-+5g");
95
96is(sprintf("%-+5g", $NInf), "-Inf ", "$NInf sprintf %-+5g");
97is(sprintf("%+-5g", $NInf), "-Inf ", "$NInf sprintf %+-5g");
98
0c7df902
JH
99ok(!defined eval { $a = sprintf("%c", $PInf)}, "sprintf %c +Inf undef");
100like($@, qr/Cannot printf/, "$PInf sprintf fails");
354b74ae
FC
101ok(!defined eval { $a = sprintf("%c", "Inf")},
102 "stringy sprintf %c +Inf undef");
c1554ae1 103like($@, qr/Cannot printf/, "stringy $PInf sprintf %c fails");
313d3d89 104
0c7df902
JH
105ok(!defined eval { $a = chr($PInf) }, "chr(+Inf) undef");
106like($@, qr/Cannot chr/, "+Inf chr() fails");
354b74ae
FC
107ok(!defined eval { $a = chr("Inf") }, "chr(stringy +Inf) undef");
108like($@, qr/Cannot chr/, "stringy +Inf chr() fails");
540a63d6 109
0c7df902
JH
110ok(!defined eval { $a = sprintf("%c", $NInf)}, "sprintf %c -Inf undef");
111like($@, qr/Cannot printf/, "$NInf sprintf fails");
354b74ae
FC
112ok(!defined eval { $a = sprintf("%c", "-Inf")},
113 "sprintf %c stringy -Inf undef");
c1554ae1 114like($@, qr/Cannot printf/, "stringy $NInf sprintf %c fails");
1cd88304 115
0c7df902
JH
116ok(!defined eval { $a = chr($NInf) }, "chr(-Inf) undef");
117like($@, qr/Cannot chr/, "-Inf chr() fails");
354b74ae
FC
118ok(!defined eval { $a = chr("-Inf") }, "chr(stringy -Inf) undef");
119like($@, qr/Cannot chr/, "stringy -Inf chr() fails");
1cd88304 120
0c7df902 121for my $f (@packi_fmt) {
5ebb886c 122 undef $a;
0c7df902
JH
123 ok(!defined eval { $a = pack($f, $PInf) }, "pack $f +Inf undef");
124 like($@, $f eq 'w' ? qr/Cannot compress Inf/: qr/Cannot pack Inf/,
125 "+Inf pack $f fails");
5ebb886c 126 undef $a;
354b74ae
FC
127 ok(!defined eval { $a = pack($f, "Inf") },
128 "pack $f stringy +Inf undef");
129 like($@, $f eq 'w' ? qr/Cannot compress Inf/: qr/Cannot pack Inf/,
130 "stringy +Inf pack $f fails");
5ebb886c 131 undef $a;
0c7df902
JH
132 ok(!defined eval { $a = pack($f, $NInf) }, "pack $f -Inf undef");
133 like($@, $f eq 'w' ? qr/Cannot compress -Inf/: qr/Cannot pack -Inf/,
134 "-Inf pack $f fails");
5ebb886c 135 undef $a;
354b74ae
FC
136 ok(!defined eval { $a = pack($f, "-Inf") },
137 "pack $f stringy -Inf undef");
138 like($@, $f eq 'w' ? qr/Cannot compress -Inf/: qr/Cannot pack -Inf/,
139 "stringy -Inf pack $f fails");
0c7df902 140}
1f4ef0f1 141
0c7df902 142for my $f (@packf_fmt) {
5ebb886c
JH
143 undef $a;
144 undef $b;
0c7df902
JH
145 ok(defined eval { $a = pack($f, $PInf) }, "pack $f +Inf defined");
146 eval { $b = unpack($f, $a) };
147 cmp_ok($b, '==', $PInf, "pack $f +Inf equals $PInf");
1f4ef0f1 148
5ebb886c
JH
149 undef $a;
150 undef $b;
0c7df902
JH
151 ok(defined eval { $a = pack($f, $NInf) }, "pack $f -Inf defined");
152 eval { $b = unpack($f, $a) };
153 cmp_ok($b, '==', $NInf, "pack $f -Inf equals $NInf");
154}
1cd88304 155
354b74ae 156for my $f (@packs_fmt) {
5ebb886c 157 undef $a;
354b74ae
FC
158 ok(defined eval { $a = pack($f, $PInf) }, "pack $f +Inf defined");
159 is($a, pack($f, "Inf"), "pack $f +Inf same as 'Inf'");
160
5ebb886c 161 undef $a;
354b74ae
FC
162 ok(defined eval { $a = pack($f, $NInf) }, "pack $f -Inf defined");
163 is($a, pack($f, "-Inf"), "pack $f -Inf same as 'Inf'");
164}
165
166is eval { unpack "p", pack 'p', $PInf }, "Inf", "pack p +Inf";
167is eval { unpack "P3", pack 'P', $PInf }, "Inf", "pack P +Inf";
168is eval { unpack "p", pack 'p', $NInf }, "-Inf", "pack p -Inf";
169is eval { unpack "P4", pack 'P', $NInf }, "-Inf", "pack P -Inf";
170
0c7df902 171for my $i (@PInf) {
8c12dc63
JH
172 cmp_ok($i + 0 , '==', $PInf, "$i is +Inf");
173 cmp_ok($i, '>', 0, "$i is positive");
313d3d89 174 is("@{[$i+0]}", "Inf", "$i value stringifies as Inf");
0c7df902 175}
313d3d89 176
0c7df902 177for my $i (@NInf) {
8c12dc63
JH
178 cmp_ok($i + 0, '==', $NInf, "$i is -Inf");
179 cmp_ok($i, '<', 0, "$i is negative");
313d3d89 180 is("@{[$i+0]}", "-Inf", "$i value stringifies as -Inf");
0c7df902 181}
313d3d89 182
0c7df902
JH
183is($PInf + $PInf, $PInf, "+Inf plus +Inf is +Inf");
184is($NInf + $NInf, $NInf, "-Inf plus -Inf is -Inf");
313d3d89 185
0c7df902
JH
186is(1/$PInf, 0, "one per +Inf is zero");
187is(1/$NInf, 0, "one per -Inf is zero");
87821667 188
0c7df902
JH
189my ($PInfPP, $PInfMM) = ($PInf, $PInf);
190my ($NInfPP, $NInfMM) = ($NInf, $NInf);;
191$PInfPP++;
192$PInfMM--;
193$NInfPP++;
194$NInfMM--;
195is($PInfPP, $PInf, "+Inf++ is +Inf");
196is($PInfMM, $PInf, "+Inf-- is +Inf");
197is($NInfPP, $NInf, "-Inf++ is -Inf");
198is($NInfMM, $NInf, "-Inf-- is -Inf");
38e1c50b 199
0c7df902
JH
200ok($PInf, "+Inf is true");
201ok($NInf, "-Inf is true");
38e1c50b 202
5bf8b78e
JH
203is(abs($PInf), $PInf, "abs(+Inf) is +Inf");
204is(abs($NInf), $PInf, "abs(-Inf) is +Inf");
205
206# One could argue of NaN as the result.
207is(int($PInf), $PInf, "int(+Inf) is +Inf");
208is(int($NInf), $NInf, "int(-Inf) is -Inf");
209
0c7df902 210is(sqrt($PInf), $PInf, "sqrt(+Inf) is +Inf");
5bf8b78e
JH
211# sqrt $NInf doesn't work because negative is caught
212
0c7df902
JH
213is(exp($PInf), $PInf, "exp(+Inf) is +Inf");
214is(exp($NInf), 0, "exp(-Inf) is zero");
38e1c50b 215
0c7df902 216SKIP: {
5bf8b78e
JH
217 if ($PInf == 0) {
218 skip "if +Inf == 0 cannot log(+Inf)", 1;
219 }
220 is(log($PInf), $PInf, "log(+Inf) is +Inf");
221}
222# log $NInf doesn't work because negative is caught
223
224is(rand($PInf), $PInf, "rand(+Inf) is +Inf");
225is(rand($NInf), $NInf, "rand(-Inf) is -Inf");
226
227# XXX Bit operations?
228# +Inf & 1 == +Inf?
229# +Inf | 1 == +Inf?
230# +Inf ^ 1 == +Inf?
231# ~+Inf == 0? or NaN?
232# -Inf ... ???
233# NaN & 1 == NaN?
234# NaN | 1 == NaN?
235# NaN ^ 1 == NaN?
236# ~NaN == NaN???
237# Or just declare insanity and die?
238
98efe49c
JH
239TODO: {
240 local $::TODO;
0c7df902 241 my $here = "$^O $Config{osvers}";
98efe49c
JH
242 $::TODO = "$here: pow (9**9**9) doesn't give Inf"
243 if $here =~ /^(?:hpux 10|os390)/;
0c7df902 244 is(9**9**9, $PInf, "9**9**9 is Inf");
313d3d89
JH
245}
246
3ff98fcf 247SKIP: {
b8974fcb 248 my @FInf = qw(Infinite Info Inf123 Infiniti Infinityz);
3ff98fcf
JH
249 if ($Config{usequadmath}) {
250 skip "quadmath strtoflt128() accepts false infinities", scalar @FInf;
251 }
3ff98fcf 252 for my $i (@FInf) {
3396ed30
JH
253 # Silence "isn't numeric in addition", that's kind of the point.
254 local $^W = 0;
255 cmp_ok("$i" + 0, '==', $PInf, "false infinity $i");
0ec38c0a
JH
256 }
257}
258
8d2f77d8
JH
259{
260 # Silence "Non-finite repeat count", that is tested elsewhere.
261 local $^W = 0;
262 is("a" x $PInf, "", "x +Inf");
263 is("a" x $NInf, "", "x -Inf");
264}
265
34c2b396
JH
266{
267 eval 'for my $x (0..$PInf) { last }';
268 like($@, qr/Range iterator outside integer range/, "0..+Inf fails");
269
270 eval 'for my $x ($NInf..0) { last }';
271 like($@, qr/Range iterator outside integer range/, "-Inf..0 fails");
272}
273
0c7df902 274# === NaN ===
38e1c50b 275
0c7df902
JH
276cmp_ok($NaN, '!=', $NaN, "NaN is NaN numerically (by not being NaN)");
277ok($NaN eq $NaN, "NaN is NaN stringifically");
313d3d89 278
0c7df902 279is("$NaN", "NaN", "$NaN value stringifies as NaN");
313d3d89 280
6b322424
JH
281{
282 local $^W = 0; # warning-ness tested later.
283 is("+NaN" + 0, "NaN", "+NaN is NaN");
284 is("-NaN" + 0, "NaN", "-NaN is NaN");
285}
313d3d89 286
5bf8b78e
JH
287is($NaN + 0, $NaN, "NaN + zero is NaN");
288
289is($NaN + 1, $NaN, "NaN + one is NaN");
290
0c7df902
JH
291is($NaN * 2, $NaN, "twice NaN is NaN");
292is($NaN / 2, $NaN, "half of NaN is NaN");
8c12dc63 293
5bf8b78e 294is($NaN * $NaN, $NaN, "NaN * NaN is NaN");
db0562f0
JH
295SKIP: {
296 if ($NaN == 0) {
297 skip "NaN looks like zero, avoiding dividing by it", 1;
298 }
299 is($NaN / $NaN, $NaN, "NaN / NaN is NaN");
300}
d06c1c80 301
0c7df902
JH
302for my $f (@printf_fmt) {
303 is(sprintf("%$f", $NaN), "NaN", "$NaN sprintf %$f is NaN");
304}
d1877901 305
5d801ef3
JH
306is(sprintf("%+g", $NaN), "NaN", "$NaN sprintf %+g");
307
308is(sprintf("%4g", $NaN), " NaN", "$NaN sprintf %4g");
309is(sprintf("%-4g", $NaN), "NaN ", "$NaN sprintf %-4g");
310
311is(sprintf("%+-5g", $NaN), "NaN ", "$NaN sprintf %+-5g");
312is(sprintf("%-+5g", $NaN), "NaN ", "$NaN sprintf %-+5g");
313
0c7df902
JH
314ok(!defined eval { $a = sprintf("%c", $NaN)}, "sprintf %c NaN undef");
315like($@, qr/Cannot printf/, "$NaN sprintf fails");
354b74ae
FC
316ok(!defined eval { $a = sprintf("%c", "NaN")},
317 "sprintf %c stringy NaN undef");
c1554ae1 318like($@, qr/Cannot printf/, "stringy $NaN sprintf %c fails");
313d3d89 319
0c7df902
JH
320ok(!defined eval { $a = chr($NaN) }, "chr NaN undef");
321like($@, qr/Cannot chr/, "NaN chr() fails");
354b74ae
FC
322ok(!defined eval { $a = chr("NaN") }, "chr stringy NaN undef");
323like($@, qr/Cannot chr/, "stringy NaN chr() fails");
1cd88304 324
0c7df902
JH
325for my $f (@packi_fmt) {
326 ok(!defined eval { $a = pack($f, $NaN) }, "pack $f NaN undef");
327 like($@, $f eq 'w' ? qr/Cannot compress NaN/: qr/Cannot pack NaN/,
328 "NaN pack $f fails");
354b74ae
FC
329 ok(!defined eval { $a = pack($f, "NaN") },
330 "pack $f stringy NaN undef");
331 like($@, $f eq 'w' ? qr/Cannot compress NaN/: qr/Cannot pack NaN/,
332 "stringy NaN pack $f fails");
0c7df902 333}
1f4ef0f1 334
0c7df902
JH
335for my $f (@packf_fmt) {
336 ok(defined eval { $a = pack($f, $NaN) }, "pack $f NaN defined");
337 eval { $b = unpack($f, $a) };
338 cmp_ok($b, '!=', $b, "pack $f NaN not-equals $NaN");
339}
1cd88304 340
354b74ae
FC
341for my $f (@packs_fmt) {
342 ok(defined eval { $a = pack($f, $NaN) }, "pack $f NaN defined");
343 is($a, pack($f, "NaN"), "pack $f NaN same as 'NaN'");
344}
345
346is eval { unpack "p", pack 'p', $NaN }, "NaN", "pack p +NaN";
347is eval { unpack "P3", pack 'P', $NaN }, "NaN", "pack P +NaN";
348
0c7df902 349for my $i (@NaN) {
3823048b
JH
350 cmp_ok($i + 0, '!=', $i + 0, "$i is NaN numerically (by not being NaN)");
351 is("@{[$i+0]}", "NaN", "$i value stringifies as NaN");
0c7df902 352}
313d3d89 353
0c7df902
JH
354ok(!($NaN < 0), "NaN is not lt zero");
355ok(!($NaN == 0), "NaN is not == zero");
356ok(!($NaN > 0), "NaN is not gt zero");
38e1c50b 357
0c7df902
JH
358ok(!($NaN < $NaN), "NaN is not lt NaN");
359ok(!($NaN > $NaN), "NaN is not gt NaN");
38e1c50b 360
0c7df902
JH
361# is() okay with $NaN because it uses eq.
362is($NaN * 0, $NaN, "NaN times zero is NaN");
363is($NaN * 2, $NaN, "NaN times two is NaN");
87821667 364
0c7df902
JH
365my ($NaNPP, $NaNMM) = ($NaN, $NaN);
366$NaNPP++;
367$NaNMM--;
5bf8b78e
JH
368is($NaNPP, $NaN, "+NaN++ is NaN");
369is($NaNMM, $NaN, "+NaN-- is NaN");
38e1c50b 370
0c7df902
JH
371# You might find this surprising (isn't NaN kind of like of undef?)
372# but this is how it is.
373ok($NaN, "NaN is true");
38e1c50b 374
5bf8b78e
JH
375is(abs($NaN), $NaN, "abs(NaN) is NaN");
376is(int($NaN), $NaN, "int(NaN) is NaN");
0c7df902
JH
377is(sqrt($NaN), $NaN, "sqrt(NaN) is NaN");
378is(exp($NaN), $NaN, "exp(NaN) is NaN");
5bf8b78e
JH
379
380SKIP: {
381 if ($NaN == 0) {
382 skip "if +NaN == 0 cannot log(+NaN)", 1;
383 }
384 is(log($NaN), $NaN, "log(NaN) is NaN");
385}
386
0c7df902 387is(sin($NaN), $NaN, "sin(NaN) is NaN");
5bf8b78e 388is(rand($NaN), $NaN, "rand(NaN) is NaN");
38e1c50b 389
98efe49c
JH
390TODO: {
391 local $::TODO;
0c7df902 392 my $here = "$^O $Config{osvers}";
98efe49c
JH
393 $::TODO = "$here: pow (9**9**9) doesn't give Inf"
394 if $here =~ /^(?:hpux 10|os390)/;
0c7df902 395 is(sin(9**9**9), $NaN, "sin(9**9**9) is NaN");
313d3d89
JH
396}
397
e855f543
JH
398SKIP: {
399 my @FNaN = qw(NaX XNAN Ind Inx);
400 # Silence "isn't numeric in addition", that's kind of the point.
401 local $^W = 0;
402 for my $i (@FNaN) {
403 cmp_ok("$i" + 0, '==', 0, "false nan $i");
404 }
405}
406
8d2f77d8
JH
407{
408 # Silence "Non-finite repeat count", that is tested elsewhere.
409 local $^W = 0;
410 is("a" x $NaN, "", "x NaN");
411}
412
0c7df902 413# === Tests combining Inf and NaN ===
38e1c50b 414
0c7df902
JH
415# is() okay with $NaN because it uses eq.
416is($PInf * 0, $NaN, "Inf times zero is NaN");
417is($PInf * $NaN, $NaN, "Inf times NaN is NaN");
418is($PInf + $NaN, $NaN, "Inf plus NaN is NaN");
419is($PInf - $PInf, $NaN, "Inf minus inf is NaN");
420is($PInf / $PInf, $NaN, "Inf div inf is NaN");
421is($PInf % $PInf, $NaN, "Inf mod inf is NaN");
313d3d89 422
0c7df902
JH
423ok(!($NaN < $PInf), "NaN is not lt +Inf");
424ok(!($NaN == $PInf), "NaN is not eq +Inf");
425ok(!($NaN > $PInf), "NaN is not gt +Inf");
38e1c50b 426
5bf8b78e 427ok(!($NaN < $NInf), "NaN is not lt -Inf");
0c7df902 428ok(!($NaN == $NInf), "NaN is not eq -Inf");
5bf8b78e 429ok(!($NaN > $NInf), "NaN is not gt -Inf");
38e1c50b 430
0c7df902 431is(sin($PInf), $NaN, "sin(+Inf) is NaN");
38e1c50b 432
25a8018c
JH
433{
434 eval 'for my $x (0..$NaN) { last }';
435 like($@, qr/Range iterator outside integer range/, "0..NaN fails");
436
437 eval 'for my $x ($NaN..0) { last }';
438 like($@, qr/Range iterator outside integer range/, "NaN..0 fails");
439}
440
7bb1ed39
JH
441# === Overflows and Underflows ===
442
443# 1e9999 (and 1e-9999) are large (and small) enough for even
444# IEEE quadruple precision (magnitude 10**4932, and 10**-4932).
445
446cmp_ok(1e9999, '==', $PInf, "overflow to +Inf (compile time)");
447cmp_ok('1e9999', '==', $PInf, "overflow to +Inf (runtime)");
448cmp_ok(-1e9999, '==', $NInf, "overflow to -Inf (compile time)");
449cmp_ok('-1e9999', '==', $NInf, "overflow to -Inf (runtime)");
450cmp_ok(1e-9999, '==', 0, "underflow to 0 (compile time) from pos");
451cmp_ok('1e-9999', '==', 0, "underflow to 0 (runtime) from pos");
452cmp_ok(-1e-9999, '==', 0, "underflow to 0 (compile time) from neg");
453cmp_ok('-1e-9999', '==', 0, "underflow to 0 (runtime) from neg");
454
75a57a38
JH
455# === Warnings triggered when and only when appropriate ===
456{
457 my $w;
458 local $SIG{__WARN__} = sub { $w = shift };
459 local $^W = 1;
460
461 my $T =
462 [
463 [ "inf", 0, $PInf ],
b8974fcb 464 [ "infinity", 0, $PInf ],
75a57a38
JH
465 [ "infxy", 1, $PInf ],
466 [ "inf34", 1, $PInf ],
467 [ "1.#INF", 0, $PInf ],
468 [ "1.#INFx", 1, $PInf ],
469 [ "1.#INF00", 0, $PInf ],
470 [ "1.#INFxy", 1, $PInf ],
b489e20f
JH
471 [ " inf", 0, $PInf ],
472 [ "inf ", 0, $PInf ],
473 [ " inf ", 0, $PInf ],
75a57a38
JH
474
475 [ "nan", 0, $NaN ],
476 [ "nanxy", 1, $NaN ],
477 [ "nan34", 1, $NaN ],
478 [ "nanq", 0, $NaN ],
3823048b 479 [ "nans", 0, $NaN ],
75a57a38
JH
480 [ "nanx", 1, $NaN ],
481 [ "nanqy", 1, $NaN ],
482 [ "nan(123)", 0, $NaN ],
483 [ "nan(0x123)", 0, $NaN ],
484 [ "nan(123xy)", 1, $NaN ],
485 [ "nan(0x123xy)", 1, $NaN ],
486 [ "nanq(123)", 0, $NaN ],
99fcdd4d 487 [ "nan(123", 1, $NaN ],
3823048b 488 [ "nan(", 1, $NaN ],
75a57a38
JH
489 [ "1.#NANQ", 0, $NaN ],
490 [ "1.#QNAN", 0, $NaN ],
491 [ "1.#NANQx", 1, $NaN ],
492 [ "1.#QNANx", 1, $NaN ],
493 [ "1.#IND", 0, $NaN ],
494 [ "1.#IND00", 0, $NaN ],
495 [ "1.#INDxy", 1, $NaN ],
b489e20f
JH
496 [ " nan", 0, $NaN ],
497 [ "nan ", 0, $NaN ],
498 [ " nan ", 0, $NaN ],
75a57a38
JH
499 ];
500
501 for my $t (@$T) {
b489e20f 502 print "# '$t->[0]' compile time\n";
75a57a38
JH
503 my $a;
504 $w = '';
505 eval '$a = "'.$t->[0].'" + 1';
506 is("$a", "$t->[2]", "$t->[0] plus one is $t->[2]");
507 if ($t->[1]) {
508 like($w, qr/^Argument \Q"$t->[0]"\E isn't numeric/,
3823048b 509 "$t->[2] numify warn");
75a57a38
JH
510 } else {
511 is($w, "", "no warning expected");
512 }
b489e20f 513 print "# '$t->[0]' runtime\n";
75a57a38
JH
514 my $n = $t->[0];
515 my $b;
516 $w = '';
517 eval '$b = $n + 1';
518 is("$b", "$t->[2]", "$n plus one is $t->[2]");
519 if ($t->[1]) {
520 like($w, qr/^Argument \Q"$n"\E isn't numeric/,
3823048b 521 "$n numify warn");
75a57a38
JH
522 } else {
523 is($w, "", "no warning expected");
524 }
525 }
526}
527
0c7df902 528done_testing();