malloc/Makefile: Split and sort tests
[glibc.git] / stdio-common / tstscanf.c
blob80c3cf83549d0ed03de0ec223bc028e44c80ad38
1 /* Copyright (C) 1991-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 #include <array_length.h>
19 #ifdef BSD
20 #include </usr/include/stdio.h>
21 #else
22 #include <stdio.h>
23 #endif
24 #include <math.h>
25 #include <stdlib.h>
26 #include <string.h>
29 int
30 main (int argc, char **argv)
32 char buf[BUFSIZ];
33 FILE *in = stdin, *out = stdout;
34 int x;
35 int result = 0;
37 if (sscanf ("0", "%d", &x) != 1)
39 fputs ("test failed!\n", stdout);
40 result = 1;
43 if (sscanf ("08905x", "%9[0-9]", buf) != 1
44 || strcmp (buf, "08905") != 0)
46 fputs ("test failed!\n", stdout);
47 result = 1;
50 if (sscanf ("", "%10[a-z]", buf) != EOF)
52 fputs ("test failed!\n", stdout);
53 result = 1;
56 sscanf ("conversion] Zero flag Ze]ro#\n", "%*[^]] %[^#]\n", buf);
57 if (strcmp (buf, "] Zero flag Ze]ro") != 0)
59 fputs ("test failed!\n", stdout);
60 result = 1;
63 if (argc == 2 && !strcmp (argv[1], "-opipe"))
65 out = popen ("/bin/cat", "w");
66 if (out == NULL)
68 perror ("popen: /bin/cat");
69 result = 1;
72 else if (argc == 3 && !strcmp (argv[1], "-ipipe"))
74 sprintf (buf, "/bin/cat %s", argv[2]);
75 in = popen (buf, "r");
76 if (in == NULL)
78 perror ("popen: /bin/cat");
79 result = 1;
84 char name[50];
85 fprintf (out,
86 "sscanf (\"thompson\", \"%%s\", name) == %d, name == \"%s\"\n",
87 sscanf ("thompson", "%s", name),
88 name);
89 if (strcmp (name, "thompson") != 0)
91 fputs ("test failed!\n", stdout);
92 result = 1;
96 fputs ("Testing scanf (vfscanf)\n", out);
98 fputs ("Test 1:\n", out);
100 int n, i;
101 float x;
102 char name[50];
103 n = fscanf (in, "%d%f%s", &i, &x, name);
104 fprintf (out, "n = %d, i = %d, x = %f, name = \"%.50s\"\n",
105 n, i, x, name);
106 if (n != 3 || i != 25 || x != 5.432F || strcmp (name, "thompson"))
108 fputs ("test failed!\n", stdout);
109 result = 1;
112 fprintf (out, "Residual: \"%s\"\n", fgets (buf, sizeof (buf), in));
113 if (strcmp (buf, "\n"))
115 fputs ("test failed!\n", stdout);
116 result = 1;
118 fputs ("Test 2:\n", out);
120 int i;
121 float x;
122 char name[50];
123 if (fscanf (in, "%2d%f%*d %[0123456789]", &i, &x, name) < 3)
125 fputs ("test failed!\n", stdout);
126 result = 1;
129 fprintf (out, "i = %d, x = %f, name = \"%.50s\"\n", i, x, name);
130 if (i != 56 || x != 789.0F || strcmp (name, "56"))
132 fputs ("test failed!\n", stdout);
133 result = 1;
136 fprintf (out, "Residual: \"%s\"\n", fgets (buf, sizeof (buf), in));
137 if (strcmp (buf, "a72\n"))
139 fputs ("test failed!\n", stdout);
140 result = 1;
142 fputs ("Test 3:\n", out);
144 static struct {
145 int count;
146 float quant;
147 const char *units;
148 const char *item;
149 } ok[] = {
150 { 3, 2.0F, "quarts", "oil" },
151 { 2, -12.8F, "degrees", "" },
152 { 0, 0.0F, "", "" },
153 { 3, 10.0F, "LBS", "fertilizer" },
154 { 3, 100.0F, "rgs", "energy" },
155 { -1, 0.0F, "", "" }};
156 size_t rounds = 0;
157 float quant;
158 char units[21], item[21];
159 while (!feof (in) && !ferror (in))
161 int count;
163 if (rounds++ >= array_length (ok))
165 fputs ("test failed!\n", stdout);
166 result = 1;
169 quant = 0.0;
170 units[0] = item[0] = '\0';
171 count = fscanf (in, "%f%20s of %20s", &quant, units, item);
172 if (fscanf (in, "%*[^\n]") < 0 && ferror (in))
174 fputs ("test failed!\n", stdout);
175 result = 1;
178 fprintf (out, "count = %d, quant = %f, item = %.21s, units = %.21s\n",
179 count, quant, item, units);
180 if (count != ok[rounds-1].count || quant != ok[rounds-1].quant
181 || strcmp (item, ok[rounds-1].item)
182 || strcmp (units, ok[rounds-1].units))
184 fputs ("test failed!\n", stdout);
185 result = 1;
189 buf[0] = '\0';
190 fprintf (out, "Residual: \"%s\"\n", fgets (buf, sizeof (buf), in));
191 if (strcmp (buf, ""))
193 fputs ("test failed!\n", stdout);
194 result = 1;
197 if (out != stdout)
198 pclose (out);
200 fputs ("Test 4:\n", out);
202 int res, val, n;
204 res = sscanf ("-242", "%3o%n", &val, &n);
205 printf ("res = %d, val = %d, n = %d\n", res, val, n);
206 if (res != 1 || val != -20 || n != 3)
208 fputs ("test failed!\n", stdout);
209 result = 1;
213 fputs ("Test 5:\n", out);
215 double a = 0, b = 0;
216 int res, n;
218 res = sscanf ("1234567", "%3lg%3lg%n", &a, &b, &n);
219 printf ("res = %d, a = %g, b = %g, n = %d\n", res, a, b, n);
221 if (res != 2 || a != 123 || b != 456 || n != 6)
223 fputs ("test failed!\n", stdout);
224 result = 1;
227 res = sscanf ("0", "%lg", &a);
228 printf ("res = %d, a = %g\n", res, a);
230 if (res != 1 || a != 0)
232 fputs ("test failed!\n", stdout);
233 result = 1;
236 res = sscanf ("1e3", "%lg%n", &a, &n);
237 printf ("res = %d, a = %g, n = %d\n", res, a, n);
239 if (res != 1 || a != 1000 || n != 3)
241 fputs ("test failed!\n", stdout);
242 result = 1;
246 fputs ("Test 6:\n", stdout);
248 char *p = (char *) -1;
249 int res;
251 sprintf (buf, "%p", NULL);
252 res = sscanf (buf, "%p", &p);
253 printf ("sscanf (\"%s\", \"%%p\", &p) = %d, p == %p\n", buf, res, p);
255 if (res != 1 || p != NULL)
257 fputs ("test failed!\n", stdout);
258 result = 1;
262 fputs ("Test 7:\n", stdout);
264 short a[2] = { -1, -1 };
265 int res;
267 res = sscanf ("32767 1234", "%hd %hd", &a[0], &a[1]);
268 printf ("res = %d, a[0] = %d, a[1] = %d\n", res, a[0], a[1]);
270 if (res != 2 || a[0] != 32767 || a[1] != 1234)
272 fputs ("test failed!\n", stdout);
273 result = 1;
277 fputs ("Test 8:\n", stdout);
279 double d = 123456.789;
280 int res;
282 res = sscanf ("0x1234", "%lf", &d);
283 printf ("res = %d, d = %f\n", res, d);
285 if (res != 1 || d != 4660)
287 fputs ("test failed!\n", stdout);
288 result = 1;
292 fputs ("Test 9:\n", stdout);
294 /* From PR libc/1313 reported by Ben Caradoc-Davies <bmcd@physics.otago.ac.nz>. */
295 float value;
296 int res;
298 res = sscanf ("0123", "%2f", &value);
299 if (res != 1 || value != 1.0)
301 fputs ("test failed!\n", stdout);
302 result = 1;
306 fputs ("Test 10:\n", stdout);
308 float value;
309 int res;
311 res = sscanf ("--", "%f", &value);
312 if (res != 0)
314 fputs ("test failed!\n", stdout);
315 result = 1;
319 fputs ("Test 11:\n", stdout);
321 char uart[50];
322 int res;
324 res = sscanf ("uart:16550A tx:0", "uart:%31s tx:%*u", uart);
325 if (res != 1)
327 fputs ("test failed!\n", stdout);
328 result = 1;
332 fputs ("Test 12:\n", stdout);
334 char uart[50];
335 int res;
337 res = sscanf ("uart:16550A", "uart:%31s tx:%*u", uart);
338 if (res != 1)
340 fputs ("test failed!\n", stdout);
341 result = 1;
345 fputs ("Test 13:\n", stdout);
347 float value;
348 int res;
350 res = sscanf ("-InF", "%f", &value);
351 if (res != 1 || isinf (value) != -1)
353 fputs ("test failed!\n", stdout);
354 result = 1;
357 res = sscanf ("+InfiNiTY", "%f", &value);
358 if (res != 1 || isinf (value) != 1)
360 fputs ("test failed!\n", stdout);
361 result = 1;
365 return result;