1 /* Copyright (C) 1991-2017 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 <http://www.gnu.org/licenses/>. */
19 #include </usr/include/stdio.h>
29 main (int argc
, char **argv
)
32 FILE *in
= stdin
, *out
= stdout
;
36 if (sscanf ("0", "%d", &x
) != 1)
38 fputs ("test failed!\n", stdout
);
42 if (sscanf ("08905x", "%9[0-9]", buf
) != 1
43 || strcmp (buf
, "08905") != 0)
45 fputs ("test failed!\n", stdout
);
49 if (sscanf ("", "%10[a-z]", buf
) != EOF
)
51 fputs ("test failed!\n", stdout
);
55 sscanf ("conversion] Zero flag Ze]ro#\n", "%*[^]] %[^#]\n", buf
);
56 if (strcmp (buf
, "] Zero flag Ze]ro") != 0)
58 fputs ("test failed!\n", stdout
);
62 if (argc
== 2 && !strcmp (argv
[1], "-opipe"))
64 out
= popen ("/bin/cat", "w");
67 perror ("popen: /bin/cat");
71 else if (argc
== 3 && !strcmp (argv
[1], "-ipipe"))
73 sprintf (buf
, "/bin/cat %s", argv
[2]);
74 in
= popen (buf
, "r");
77 perror ("popen: /bin/cat");
85 "sscanf (\"thompson\", \"%%s\", name) == %d, name == \"%s\"\n",
86 sscanf ("thompson", "%s", name
),
88 if (strcmp (name
, "thompson") != 0)
90 fputs ("test failed!\n", stdout
);
95 fputs ("Testing scanf (vfscanf)\n", out
);
97 fputs ("Test 1:\n", out
);
102 n
= fscanf (in
, "%d%f%s", &i
, &x
, name
);
103 fprintf (out
, "n = %d, i = %d, x = %f, name = \"%.50s\"\n",
105 if (n
!= 3 || i
!= 25 || x
!= 5.432F
|| strcmp (name
, "thompson"))
107 fputs ("test failed!\n", stdout
);
111 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
112 if (strcmp (buf
, "\n"))
114 fputs ("test failed!\n", stdout
);
117 fputs ("Test 2:\n", out
);
122 (void) fscanf (in
, "%2d%f%*d %[0123456789]", &i
, &x
, name
);
123 fprintf (out
, "i = %d, x = %f, name = \"%.50s\"\n", i
, x
, name
);
124 if (i
!= 56 || x
!= 789.0F
|| strcmp (name
, "56"))
126 fputs ("test failed!\n", stdout
);
130 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
131 if (strcmp (buf
, "a72\n"))
133 fputs ("test failed!\n", stdout
);
136 fputs ("Test 3:\n", out
);
144 { 3, 2.0F
, "quarts", "oil" },
145 { 2, -12.8F
, "degrees", "" },
147 { 3, 10.0F
, "LBS", "fertilizer" },
148 { 3, 100.0F
, "rgs", "energy" },
149 { -1, 0.0F
, "", "" }};
152 char units
[21], item
[21];
153 while (!feof (in
) && !ferror (in
))
157 if (rounds
++ >= sizeof (ok
) / sizeof (ok
[0]))
159 fputs ("test failed!\n", stdout
);
164 units
[0] = item
[0] = '\0';
165 count
= fscanf (in
, "%f%20s of %20s", &quant
, units
, item
);
166 (void) fscanf (in
, "%*[^\n]");
167 fprintf (out
, "count = %d, quant = %f, item = %.21s, units = %.21s\n",
168 count
, quant
, item
, units
);
169 if (count
!= ok
[rounds
-1].count
|| quant
!= ok
[rounds
-1].quant
170 || strcmp (item
, ok
[rounds
-1].item
)
171 || strcmp (units
, ok
[rounds
-1].units
))
173 fputs ("test failed!\n", stdout
);
179 fprintf (out
, "Residual: \"%s\"\n", fgets (buf
, sizeof (buf
), in
));
180 if (strcmp (buf
, ""))
182 fputs ("test failed!\n", stdout
);
189 fputs ("Test 4:\n", out
);
193 res
= sscanf ("-242", "%3o%n", &val
, &n
);
194 printf ("res = %d, val = %d, n = %d\n", res
, val
, n
);
195 if (res
!= 1 || val
!= -20 || n
!= 3)
197 fputs ("test failed!\n", stdout
);
202 fputs ("Test 5:\n", out
);
207 res
= sscanf ("1234567", "%3lg%3lg%n", &a
, &b
, &n
);
208 printf ("res = %d, a = %g, b = %g, n = %d\n", res
, a
, b
, n
);
210 if (res
!= 2 || a
!= 123 || b
!= 456 || n
!= 6)
212 fputs ("test failed!\n", stdout
);
216 res
= sscanf ("0", "%lg", &a
);
217 printf ("res = %d, a = %g\n", res
, a
);
219 if (res
!= 1 || a
!= 0)
221 fputs ("test failed!\n", stdout
);
225 res
= sscanf ("1e3", "%lg%n", &a
, &n
);
226 printf ("res = %d, a = %g, n = %d\n", res
, a
, n
);
228 if (res
!= 1 || a
!= 1000 || n
!= 3)
230 fputs ("test failed!\n", stdout
);
235 fputs ("Test 6:\n", stdout
);
237 char *p
= (char *) -1;
240 sprintf (buf
, "%p", NULL
);
241 res
= sscanf (buf
, "%p", &p
);
242 printf ("sscanf (\"%s\", \"%%p\", &p) = %d, p == %p\n", buf
, res
, p
);
244 if (res
!= 1 || p
!= NULL
)
246 fputs ("test failed!\n", stdout
);
251 fputs ("Test 7:\n", stdout
);
253 short a
[2] = { -1, -1 };
256 res
= sscanf ("32767 1234", "%hd %hd", &a
[0], &a
[1]);
257 printf ("res = %d, a[0] = %d, a[1] = %d\n", res
, a
[0], a
[1]);
259 if (res
!= 2 || a
[0] != 32767 || a
[1] != 1234)
261 fputs ("test failed!\n", stdout
);
266 fputs ("Test 8:\n", stdout
);
268 double d
= 123456.789;
271 res
= sscanf ("0x1234", "%lf", &d
);
272 printf ("res = %d, d = %f\n", res
, d
);
274 if (res
!= 1 || d
!= 4660)
276 fputs ("test failed!\n", stdout
);
281 fputs ("Test 9:\n", stdout
);
283 /* From PR libc/1313 reported by Ben Caradoc-Davies <bmcd@physics.otago.ac.nz>. */
287 res
= sscanf ("0123", "%2f", &value
);
288 if (res
!= 1 || value
!= 1.0)
290 fputs ("test failed!\n", stdout
);
295 fputs ("Test 10:\n", stdout
);
300 res
= sscanf ("--", "%f", &value
);
303 fputs ("test failed!\n", stdout
);
308 fputs ("Test 11:\n", stdout
);
313 res
= sscanf ("uart:16550A tx:0", "uart:%31s tx:%*u", uart
);
316 fputs ("test failed!\n", stdout
);
321 fputs ("Test 12:\n", stdout
);
326 res
= sscanf ("uart:16550A", "uart:%31s tx:%*u", uart
);
329 fputs ("test failed!\n", stdout
);
334 fputs ("Test 13:\n", stdout
);
339 res
= sscanf ("-InF", "%f", &value
);
340 if (res
!= 1 || isinf (value
) != -1)
342 fputs ("test failed!\n", stdout
);
346 res
= sscanf ("+InfiNiTY", "%f", &value
);
347 if (res
!= 1 || isinf (value
) != 1)
349 fputs ("test failed!\n", stdout
);