We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a60b26 commit 91c72a7Copy full SHA for 91c72a7
test/zmij-test.cc
@@ -41,7 +41,10 @@ TEST(zmij_test, umul_upper_inexact_to_odd) {
41
0x24554a3ce60a4643);
42
}
43
44
-TEST(dtoa_test, normal) { EXPECT_EQ(dtoa(6.62607015e-34), "6.62607015e-34"); }
+TEST(dtoa_test, normal) {
45
+ EXPECT_EQ(dtoa(6.62607015e-34), "6.62607015e-34");
46
+ EXPECT_EQ(dtoa(5.444310685350916e+14), "5.444310685350916e+14");
47
+}
48
49
TEST(dtoa_test, subnormal) {
50
EXPECT_EQ(dtoa(std::numeric_limits<double>::denorm_min()), "5e-324");
0 commit comments