Skip to content

Commit 38c84d6

Browse files
committed
sprintf2.t: mark TODO bad denorm values under g++
Some t/op/sprintf2.t tests were failing under g++. This is due the perl toker interpreting very small literal hex floating pointers as 0 rather than as a subnormal value. For example: perl -le'print "bad" if 0x1.fffffffffffffp-1022 == 0.0' This breaks some of the sprintf2.t tests, so mark them TODO them if the literal value evaluates to zero. Note that this is a bug in the toker/g++/glibc rather than sprintf. The issue is due to the use of pow() in scan_num(): under gcc and plain g++, pow(2.0, -1074) returns the smallest denorm number; however, under 'g++ -ansi', it returns 0.0.
1 parent e8d0f50 commit 38c84d6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

t/op/sprintf2.t

+11-1
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,17 @@ SKIP: {
808808
for my $t (@subnormals) {
809809
# Note that "0x1p+2" is not considered numeric,
810810
# since neither is "0x12", hence the eval.
811-
my $s = sprintf($t->[1], eval $t->[0]);
811+
my $f = eval $t->[0];
812+
# XXX under g++ -ansi, pow(2.0, -1074) returns 0 rather
813+
# than the smallest denorm number. Which means that very small
814+
# string literals on a perl compiled under g++ may be seen as 0.
815+
# This is either a bug in the g++ math library or scan_num() in
816+
# toke.c; but in either case, its not a bug in sprintf(), so
817+
# skip the test.
818+
local $::TODO = "denorm literals treated as zero"
819+
if $f == 0.0 && $t->[2] ne '0x0p+0';
820+
821+
my $s = sprintf($t->[1], $f);
812822
is($s, $t->[2], "subnormal @$t got $s");
813823
}
814824

0 commit comments

Comments
 (0)