]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/regression/lib/libc/stdio/test-scanfloat.c
This commit was generated by cvs2svn to compensate for changes in r175296,
[FreeBSD/FreeBSD.git] / tools / regression / lib / libc / stdio / test-scanfloat.c
1 /*-
2  * Copyright (C) 2003, 2005 David Schultz <das@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 /*
28  * Test for scanf() floating point formats.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include <assert.h>
35 #include <fenv.h>
36 #include <float.h>
37 #include <locale.h>
38 #include <math.h>
39 #include <stdio.h>
40 #include <string.h>
41
42 #define eq(type, a, b)  _eq(type##_EPSILON, (a), (b))
43 static int _eq(long double epsilon, long double a, long double b);
44
45 int
46 main(int argc, char *argv[])
47 {
48         char buf[128];
49         long double ld = 0.0;
50         double d = 0.0;
51         float f = 0.0;
52
53         printf("1..3\n");
54
55         buf[0] = '\0';
56         assert(setlocale(LC_NUMERIC, ""));
57
58         /*
59          * Various tests for normalized numbers
60          */
61         sscanf("3.141592", "%e", &f);
62         assert(eq(FLT, f, 3.141592));
63
64         sscanf("3.141592653589793", "%lf", &d);
65         assert(eq(DBL, d, 3.141592653589793));
66
67         sscanf("1.234568e+06", "%E", &f);
68         assert(eq(FLT, f, 1.234568e+06));
69
70         sscanf("-1.234568e6", "%lF", &d);
71         assert(eq(DBL, d, -1.234568e6));
72
73         sscanf("+1.234568e-52", "%LG", &ld);
74         assert(eq(LDBL, ld, 1.234568e-52L));
75
76         sscanf("0.1", "%la", &d);
77         assert(eq(DBL, d, 0.1));
78
79         sscanf("00.2", "%lA", &d);
80         assert(eq(DBL, d, 0.2));
81
82         sscanf("123456", "%5le%s", &d, buf);
83         assert(eq(DBL, d, 12345.));
84         assert(strcmp(buf, "6") == 0);
85
86         sscanf("1.0Q", "%*5le%s", buf);
87         assert(strcmp(buf, "Q") == 0);
88
89         sscanf("-1.23e", "%e%s", &f, buf);
90         assert(eq(FLT, f, -1.23));
91         assert(strcmp(buf, "e") == 0);
92
93         sscanf("1.25e+", "%le%s", &d, buf);
94         assert(eq(DBL, d, 1.25));
95         assert(strcmp(buf, "e+") == 0);
96
97         sscanf("1.23E4E5", "%le%s", &d, buf);
98         assert(eq(DBL, d, 1.23e4));
99         assert(strcmp(buf, "E5") == 0);
100
101         sscanf("12e6", "%le", &d);
102         assert(eq(DBL, d, 12e6));
103
104         sscanf("1.a", "%le%s", &d, buf);
105         assert(eq(DBL, d, 1.0));
106         assert(strcmp(buf, "a") == 0);
107
108         sscanf(".0p4", "%le%s", &d, buf);
109         assert(eq(DBL, d, 0.0));
110         assert(strcmp(buf, "p4") == 0);
111
112         d = 0.25;
113         assert(sscanf(".", "%le", &d) == 0);
114         assert(d == 0.25);
115
116         sscanf("0x08", "%le", &d);
117         assert(d == 0x8p0);
118
119         sscanf("0x90a.bcdefP+09a", "%le%s", &d, buf);
120         assert(d == 0x90a.bcdefp+09);
121         assert(strcmp(buf, "a") == 0);
122
123 #if (LDBL_MANT_DIG > DBL_MANT_DIG) && !defined(__i386__)
124         sscanf("3.14159265358979323846", "%Lg", &ld);
125         assert(eq(LDBL, ld, 3.14159265358979323846L));
126
127         sscanf("  0X.0123456789abcdefffp-3g", "%Le%s", &ld, buf);
128         assert(ld == 0x0.0123456789abcdefffp-3L);
129         assert(strcmp(buf, "g") == 0);
130 #endif
131
132         sscanf("0xg", "%le%s", &d, buf);
133         assert(d == 0.0);
134         assert(strcmp(buf, "xg") == 0);
135
136         assert(setlocale(LC_NUMERIC, "ru_RU.ISO8859-5")); /* decimalpoint==, */
137
138         sscanf("1.23", "%le%s", &d, buf);
139         assert(d == 1.0);
140         assert(strcmp(buf, ".23") == 0);
141
142         sscanf("1,23", "%le", &d);
143         assert(d == 1.23);
144
145         assert(setlocale(LC_NUMERIC, ""));
146
147         printf("ok 1 - scanfloat\n");
148
149         /*
150          * Infinity and NaN tests
151          */
152         sscanf("-Inf", "%le", &d);
153         assert(d < 0.0 && isinf(d));
154
155         sscanf("iNfInItY and beyond", "%le%s", &d, buf);
156         assert(d > 0.0 && isinf(d));
157         assert(strcmp(buf, " and beyond"));
158
159         sscanf("NaN", "%le", &d);
160         assert(isnan(d));
161
162         sscanf("NAN(123Y", "%le%s", &d, buf);
163         assert(isnan(d));
164         assert(strcmp(buf, "(123Y") == 0);
165
166         sscanf("nan(f00f)plugh", "%le%s", &d, buf);
167         assert(isnan(d));
168         assert(strcmp(buf, "plugh") == 0);
169
170         sscanf("-nan", "%le", &d);
171         assert(isnan(d));
172
173         /* Only quiet NaNs should be returned. */
174         sscanf("NaN", "%e", &f);
175         sscanf("nan", "%le", &d);
176         sscanf("nan", "%Le", &ld);
177         feclearexcept(FE_ALL_EXCEPT);
178         assert(f != f);
179         assert(d != d);
180         assert(ld != ld);
181         assert(fetestexcept(FE_INVALID) == 0);
182         sscanf("nan(1234)", "%e", &f);
183         sscanf("nan(1234)", "%le", &d);
184         sscanf("nan(1234)", "%Le", &ld);
185         feclearexcept(FE_ALL_EXCEPT);
186         assert(f != f);
187         assert(d != d);
188         assert(ld != ld);
189 #if 0
190         /*
191          * POSIX says we should only generate quiet NaNs, but the gdtoa
192          * author convincingly argues that if you ask for a NaN format
193          * based on some implementation-defined string, you should get
194          * what you asked for, even if it's a signaling NaN.
195          */
196         assert(fetestexcept(FE_INVALID) == 0);
197 #endif
198
199         printf("ok 2 - scanfloat\n");
200
201         /*
202          * Rounding tests
203          */
204
205         fesetround(FE_DOWNWARD);
206
207         sscanf("1.999999999999999999999999999999999", "%le", &d);
208         assert(d < 2.0);
209         sscanf("0x1.ffffffffffffffp0", "%le", &d);
210         assert(d < 2.0);
211         sscanf("1.999999999999999999999999999999999", "%Le", &ld);
212         assert(ld < 2.0);
213
214         sscanf("1.0571892669084007", "%le", &d);
215         assert(d == 0x1.0ea3f4af0dc59p0);
216         sscanf("-1.0571892669084007", "%le", &d);
217         assert(d == -0x1.0ea3f4af0dc5ap0);
218         sscanf("1.0571892669084010", "%le", &d);
219         assert(d == 0x1.0ea3f4af0dc5ap0);
220
221         sscanf("0x1.23p-5000", "%le", &d);
222         assert(d == 0.0);
223
224         sscanf("0x1.2345678p-1050", "%le", &d);
225         assert(d == 0x1.234567p-1050);
226
227         fesetround(FE_UPWARD);
228
229         sscanf("1.0571892669084007", "%le", &d);
230         assert(d == 0x1.0ea3f4af0dc5ap0);
231         sscanf("-1.0571892669084007", "%le", &d);
232         assert(d == -0x1.0ea3f4af0dc59p0);
233         sscanf("1.0571892669084010", "%le", &d);
234         assert(d == 0x1.0ea3f4af0dc5bp0);
235
236         sscanf("0x1.23p-5000", "%le", &d);
237         assert(d == 0x1p-1074);
238
239         sscanf("0x1.2345678p-1050", "%le", &d);
240         assert(d == 0x1.234568p-1050);
241
242         fesetround(FE_TOWARDZERO);
243
244         sscanf("1.0571892669084007", "%le", &d);
245         assert(d == 0x1.0ea3f4af0dc59p0);
246         sscanf("-1.0571892669084007", "%le", &d);
247         assert(d == -0x1.0ea3f4af0dc59p0);
248         sscanf("1.0571892669084010", "%le", &d);
249         assert(d == 0x1.0ea3f4af0dc5ap0);
250
251         sscanf("0x1.23p-5000", "%le", &d);
252         assert(d == 0.0);
253
254         sscanf("0x1.2345678p-1050", "%le", &d);
255         assert(d == 0x1.234567p-1050);
256
257         fesetround(FE_TONEAREST);
258
259         /* 1.0571892669084007 is slightly closer to 0x1.0ea3f4af0dc59p0 */
260         sscanf("1.0571892669084007", "%le", &d);
261         assert(d == 0x1.0ea3f4af0dc59p0);
262         sscanf("-1.0571892669084007", "%le", &d);
263         assert(d == -0x1.0ea3f4af0dc59p0);
264         sscanf("1.0571892669084010", "%le", &d);
265         assert(d == 0x1.0ea3f4af0dc5bp0);
266
267         /* strtod() should round small numbers to 0. */
268         sscanf("0x1.23p-5000", "%le", &d);
269         assert(d == 0.0);
270
271         /* Extra digits in a denormal shouldn't break anything. */
272         sscanf("0x1.2345678p-1050", "%le", &d);
273         assert(d == 0x1.234568p-1050);
274
275         printf("ok 3 - scanfloat\n");
276
277         return (0);
278 }
279
280 static int
281 _eq(long double epsilon, long double a, long double b)
282 {
283         long double delta;
284
285         delta = a - b;
286         if (delta < 0)          /* XXX no fabsl() */
287                 delta = -delta;
288         return (delta <= epsilon);
289 }