1 /* Copyright (C) 1991-2021 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>
20 #include </usr/include/stdio.h>
30 main (int argc
, char **argv
)
33 FILE *in
= stdin
, *out
= stdout
;
37 if (sscanf ("0", "%d", &x
) != 1)
39 fputs ("test failed!\n", stdout
);
43 if (sscanf ("08905x", "%9[0-9]", buf
) != 1
44 || strcmp (buf
, "08905") != 0)
46 fputs ("test failed!\n", stdout
);
50 if (sscanf ("", "%10[a-z]", buf
) != EOF
)
52 fputs ("test failed!\n", stdout
);
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
);
63 if (argc
== 2 && !strcmp (argv
[1], "-opipe"))
65 out
= popen ("/bin/cat", "w");
68 perror ("popen: /bin/cat");
72 else if (argc
== 3 && !strcmp (argv
[1], "-ipipe"))
74 sprintf (buf
, "/bin/cat %s", argv
[2]);
75 in
= popen (buf
, "r");
78 perror ("popen: /bin/cat");
86 "sscanf (\"thompson\", \"%%s\", name) == %d, name == \"%s\"\n",
87 sscanf ("thompson", "%s", name
),
89 if (strcmp (name
, "thompson") != 0)
91 fputs ("test failed!\n", stdout
);
96 fputs ("Testing scanf (vfscanf)\n", out
);
98 fputs ("Test 1:\n", out
);
103 n
= fscanf (in
, "%d%f%s", &i
, &x
, name
);
104 fprintf (out
, "n = %d, i = %d, x = %f, name = \"%.50s\"\n",
106 if (n
!= 3 || i
!= 25 || x
!= 5.432F
|| strcmp (name
, "thompson"))
108 fputs ("test failed!\n", stdout
);
112 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
113 if (strcmp (buf
, "\n"))
115 fputs ("test failed!\n", stdout
);
118 fputs ("Test 2:\n", out
);
123 (void) fscanf (in
, "%2d%f%*d %[0123456789]", &i
, &x
, name
);
124 fprintf (out
, "i = %d, x = %f, name = \"%.50s\"\n", i
, x
, name
);
125 if (i
!= 56 || x
!= 789.0F
|| strcmp (name
, "56"))
127 fputs ("test failed!\n", stdout
);
131 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
132 if (strcmp (buf
, "a72\n"))
134 fputs ("test failed!\n", stdout
);
137 fputs ("Test 3:\n", out
);
145 { 3, 2.0F
, "quarts", "oil" },
146 { 2, -12.8F
, "degrees", "" },
148 { 3, 10.0F
, "LBS", "fertilizer" },
149 { 3, 100.0F
, "rgs", "energy" },
150 { -1, 0.0F
, "", "" }};
153 char units
[21], item
[21];
154 while (!feof (in
) && !ferror (in
))
158 if (rounds
++ >= array_length (ok
))
160 fputs ("test failed!\n", stdout
);
165 units
[0] = item
[0] = '\0';
166 count
= fscanf (in
, "%f%20s of %20s", &quant
, units
, item
);
167 (void) fscanf (in
, "%*[^\n]");
168 fprintf (out
, "count = %d, quant = %f, item = %.21s, units = %.21s\n",
169 count
, quant
, item
, units
);
170 if (count
!= ok
[rounds
-1].count
|| quant
!= ok
[rounds
-1].quant
171 || strcmp (item
, ok
[rounds
-1].item
)
172 || strcmp (units
, ok
[rounds
-1].units
))
174 fputs ("test failed!\n", stdout
);
180 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
181 if (strcmp (buf
, ""))
183 fputs ("test failed!\n", stdout
);
190 fputs ("Test 4:\n", out
);
194 res
= sscanf ("-242", "%3o%n", &val
, &n
);
195 printf ("res = %d, val = %d, n = %d\n", res
, val
, n
);
196 if (res
!= 1 || val
!= -20 || n
!= 3)
198 fputs ("test failed!\n", stdout
);
203 fputs ("Test 5:\n", out
);
208 res
= sscanf ("1234567", "%3lg%3lg%n", &a
, &b
, &n
);
209 printf ("res = %d, a = %g, b = %g, n = %d\n", res
, a
, b
, n
);
211 if (res
!= 2 || a
!= 123 || b
!= 456 || n
!= 6)
213 fputs ("test failed!\n", stdout
);
217 res
= sscanf ("0", "%lg", &a
);
218 printf ("res = %d, a = %g\n", res
, a
);
220 if (res
!= 1 || a
!= 0)
222 fputs ("test failed!\n", stdout
);
226 res
= sscanf ("1e3", "%lg%n", &a
, &n
);
227 printf ("res = %d, a = %g, n = %d\n", res
, a
, n
);
229 if (res
!= 1 || a
!= 1000 || n
!= 3)
231 fputs ("test failed!\n", stdout
);
236 fputs ("Test 6:\n", stdout
);
238 char *p
= (char *) -1;
241 sprintf (buf
, "%p", NULL
);
242 res
= sscanf (buf
, "%p", &p
);
243 printf ("sscanf (\"%s\", \"%%p\", &p) = %d, p == %p\n", buf
, res
, p
);
245 if (res
!= 1 || p
!= NULL
)
247 fputs ("test failed!\n", stdout
);
252 fputs ("Test 7:\n", stdout
);
254 short a
[2] = { -1, -1 };
257 res
= sscanf ("32767 1234", "%hd %hd", &a
[0], &a
[1]);
258 printf ("res = %d, a[0] = %d, a[1] = %d\n", res
, a
[0], a
[1]);
260 if (res
!= 2 || a
[0] != 32767 || a
[1] != 1234)
262 fputs ("test failed!\n", stdout
);
267 fputs ("Test 8:\n", stdout
);
269 double d
= 123456.789;
272 res
= sscanf ("0x1234", "%lf", &d
);
273 printf ("res = %d, d = %f\n", res
, d
);
275 if (res
!= 1 || d
!= 4660)
277 fputs ("test failed!\n", stdout
);
282 fputs ("Test 9:\n", stdout
);
284 /* From PR libc/1313 reported by Ben Caradoc-Davies <bmcd@physics.otago.ac.nz>. */
288 res
= sscanf ("0123", "%2f", &value
);
289 if (res
!= 1 || value
!= 1.0)
291 fputs ("test failed!\n", stdout
);
296 fputs ("Test 10:\n", stdout
);
301 res
= sscanf ("--", "%f", &value
);
304 fputs ("test failed!\n", stdout
);
309 fputs ("Test 11:\n", stdout
);
314 res
= sscanf ("uart:16550A tx:0", "uart:%31s tx:%*u", uart
);
317 fputs ("test failed!\n", stdout
);
322 fputs ("Test 12:\n", stdout
);
327 res
= sscanf ("uart:16550A", "uart:%31s tx:%*u", uart
);
330 fputs ("test failed!\n", stdout
);
335 fputs ("Test 13:\n", stdout
);
340 res
= sscanf ("-InF", "%f", &value
);
341 if (res
!= 1 || isinf (value
) != -1)
343 fputs ("test failed!\n", stdout
);
347 res
= sscanf ("+InfiNiTY", "%f", &value
);
348 if (res
!= 1 || isinf (value
) != 1)
350 fputs ("test failed!\n", stdout
);