1 /* $NetBSD: t_strtod.c,v 1.33 2014/12/27 18:03:41 martin Exp $ */
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 /* Public domain, Otto Moerbeek <otto@drijf.net>, 2006. */
34 #include <sys/cdefs.h>
35 __RCSID("$NetBSD: t_strtod.c,v 1.33 2014/12/27 18:03:41 martin Exp $");
50 static const char * const inf_strings
[] =
51 { "Inf", "INF", "-Inf", "-INF", "Infinity", "+Infinity",
52 "INFINITY", "-INFINITY", "InFiNiTy", "+InFiNiTy" };
53 const char *nan_string
= "NaN(x)y";
57 ATF_TC_HEAD(strtod_basic
, tc
)
59 atf_tc_set_md_var(tc
, "descr", "A basic test of strtod(3)");
62 ATF_TC_BODY(strtod_basic
, tc
)
64 static const size_t n
= 1024 * 1000;
66 for (size_t i
= 1; i
< n
; i
= i
+ 1024) {
68 (void)snprintf(buf
, sizeof(buf
), "%zu.%zu", i
, i
+ 1);
71 double d
= strtod(buf
, NULL
);
74 ATF_REQUIRE(errno
== 0);
79 ATF_TC_HEAD(strtod_hex
, tc
)
81 atf_tc_set_md_var(tc
, "descr", "A strtod(3) with hexadecimals");
85 #define SMALL_NUM 1.0e-38
87 #define SMALL_NUM 1.0e-40
90 ATF_TC_BODY(strtod_hex
, tc
)
97 d
= strtod(str
, &end
); /* -0.0 */
99 ATF_REQUIRE(end
== str
+ 4);
100 ATF_REQUIRE(signbit(d
) != 0);
101 ATF_REQUIRE(fabs(d
) < SMALL_NUM
);
104 d
= strtod(str
, &end
); /* -0.0 */
106 ATF_REQUIRE(end
== str
+ 2);
107 ATF_REQUIRE(signbit(d
) != 0);
108 ATF_REQUIRE(fabs(d
) < SMALL_NUM
);
112 ATF_TC_HEAD(strtod_inf
, tc
)
114 atf_tc_set_md_var(tc
, "descr", "A strtod(3) with INF (PR lib/33262)");
117 ATF_TC_BODY(strtod_inf
, tc
)
120 for (size_t i
= 0; i
< __arraycount(inf_strings
); i
++) {
121 volatile double d
= strtod(inf_strings
[i
], NULL
);
122 ATF_REQUIRE(isinf(d
) != 0);
125 atf_tc_skip("vax not supported");
130 ATF_TC_HEAD(strtof_inf
, tc
)
132 atf_tc_set_md_var(tc
, "descr", "A strtof(3) with INF (PR lib/33262)");
135 ATF_TC_BODY(strtof_inf
, tc
)
138 for (size_t i
= 0; i
< __arraycount(inf_strings
); i
++) {
139 volatile float f
= strtof(inf_strings
[i
], NULL
);
140 ATF_REQUIRE(isinf(f
) != 0);
143 atf_tc_skip("vax not supported");
148 ATF_TC_HEAD(strtold_inf
, tc
)
150 atf_tc_set_md_var(tc
, "descr", "A strtold(3) with INF (PR lib/33262)");
153 ATF_TC_BODY(strtold_inf
, tc
)
156 # ifdef __HAVE_LONG_DOUBLE
158 for (size_t i
= 0; i
< __arraycount(inf_strings
); i
++) {
159 volatile long double ld
= strtold(inf_strings
[i
], NULL
);
160 ATF_REQUIRE(isinf(ld
) != 0);
163 atf_tc_skip("Requires long double support");
166 atf_tc_skip("vax not supported");
171 ATF_TC_HEAD(strtod_nan
, tc
)
173 atf_tc_set_md_var(tc
, "descr", "A strtod(3) with NaN");
176 ATF_TC_BODY(strtod_nan
, tc
)
181 volatile double d
= strtod(nan_string
, &end
);
182 ATF_REQUIRE(isnan(d
) != 0);
183 ATF_REQUIRE(strcmp(end
, "y") == 0);
185 atf_tc_skip("vax not supported");
190 ATF_TC_HEAD(strtof_nan
, tc
)
192 atf_tc_set_md_var(tc
, "descr", "A strtof(3) with NaN");
195 ATF_TC_BODY(strtof_nan
, tc
)
200 volatile float f
= strtof(nan_string
, &end
);
201 ATF_REQUIRE(isnanf(f
) != 0);
202 ATF_REQUIRE(strcmp(end
, "y") == 0);
204 atf_tc_skip("vax not supported");
209 ATF_TC_HEAD(strtold_nan
, tc
)
211 atf_tc_set_md_var(tc
, "descr", "A strtold(3) with NaN (PR lib/45020)");
214 ATF_TC_BODY(strtold_nan
, tc
)
217 # ifdef __HAVE_LONG_DOUBLE
221 volatile long double ld
= strtold(nan_string
, &end
);
222 ATF_REQUIRE(isnan(ld
) != 0);
223 ATF_REQUIRE(__isnanl(ld
) != 0);
224 ATF_REQUIRE(strcmp(end
, "y") == 0);
226 atf_tc_skip("Requires long double support");
229 atf_tc_skip("vax not supported");
233 ATF_TC(strtod_round
);
234 ATF_TC_HEAD(strtod_round
, tc
)
236 atf_tc_set_md_var(tc
, "descr", "Test rouding in strtod(3)");
239 ATF_TC_BODY(strtod_round
, tc
)
244 * Test that strtod(3) honors the current rounding mode.
245 * The used value is somewhere near 1 + DBL_EPSILON + FLT_EPSILON.
248 "1.00000011920928977282585492503130808472633361816406";
250 (void)fesetround(FE_UPWARD
);
252 volatile double d1
= strtod(val
, NULL
);
254 (void)fesetround(FE_DOWNWARD
);
256 volatile double d2
= strtod(val
, NULL
);
258 if (fabs(d1
- d2
) > 0.0)
261 atf_tc_expect_fail("PR misc/44767");
262 atf_tc_fail("strtod(3) did not honor fesetround(3)");
265 atf_tc_skip("Requires <fenv.h> support");
269 ATF_TC(strtod_underflow
);
270 ATF_TC_HEAD(strtod_underflow
, tc
)
272 atf_tc_set_md_var(tc
, "descr", "Test underflow in strtod(3)");
275 ATF_TC_BODY(strtod_underflow
, tc
)
279 "0.0000000000000000000000000000000000000000000000000000"
280 "000000000000000000000000000000000000000000000000000000"
281 "000000000000000000000000000000000000000000000000000000"
282 "000000000000000000000000000000000000000000000000000000"
283 "000000000000000000000000000000000000000000000000000000"
284 "000000000000000000000000000000000000000000000000000000"
285 "000000000000000000000000000000000000000000000000000000"
286 "000000000000000002";
289 volatile double d
= strtod(tmp
, NULL
);
291 if (d
!= 0 || errno
!= ERANGE
)
292 atf_tc_fail("strtod(3) did not detect underflow");
296 * Bug found by Geza Herman.
298 * http://www.exploringbinary.com/a-bug-in-the-bigcomp-function-of-david-gays-strtod/
300 ATF_TC(strtod_gherman_bug
);
301 ATF_TC_HEAD(strtod_gherman_bug
, tc
)
303 atf_tc_set_md_var(tc
, "descr", "Test a bug found by Geza Herman");
306 ATF_TC_BODY(strtod_gherman_bug
, tc
)
310 "1.8254370818746402660437411213933955878019332885742187";
313 volatile double d
= strtod(str
, NULL
);
315 ATF_CHECK(d
== 0x1.d34fd8378ea83p
+0);
321 ATF_TP_ADD_TC(tp
, strtod_basic
);
322 ATF_TP_ADD_TC(tp
, strtod_hex
);
323 ATF_TP_ADD_TC(tp
, strtod_inf
);
324 ATF_TP_ADD_TC(tp
, strtof_inf
);
325 ATF_TP_ADD_TC(tp
, strtold_inf
);
326 ATF_TP_ADD_TC(tp
, strtod_nan
);
327 ATF_TP_ADD_TC(tp
, strtof_nan
);
328 ATF_TP_ADD_TC(tp
, strtold_nan
);
329 ATF_TP_ADD_TC(tp
, strtod_round
);
330 ATF_TP_ADD_TC(tp
, strtod_underflow
);
331 ATF_TP_ADD_TC(tp
, strtod_gherman_bug
);
333 return atf_no_error();