maint.mk: Update system header list for #include syntax checks.
[gnulib.git] / tests / test-fflush2.c
blob2a4248cbcd942882e238056d8c62da84fb21ae52
1 /* Test of POSIX compatible fflush() function.
2 Copyright (C) 2008-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 #include <stdio.h>
21 #include "binary-io.h"
22 #include "macros.h"
24 int
25 main (int argc, char **argv)
27 int c;
29 /* Avoid the well-known bugs of fflush() on streams in O_TEXT mode
30 on native Windows platforms. */
31 set_binary_mode (0, O_BINARY);
33 if (argc > 1)
34 switch (argv[1][0])
36 case '1':
37 /* Check fflush after a backup ungetc() call. This is case 1a in
38 terms of
39 <https://lists.gnu.org/r/bug-gnulib/2008-03/msg00131.html>,
40 according to the Austin Group's resolution on 2009-01-08. */
42 c = fgetc (stdin);
43 ASSERT (c == '#');
45 c = fgetc (stdin);
46 ASSERT (c == '!');
48 /* Here the file-position indicator must be 2. */
50 c = ungetc ('!', stdin);
51 ASSERT (c == '!');
53 fflush (stdin);
55 /* Here the file-position indicator must be 1. */
57 c = fgetc (stdin);
58 ASSERT (c == '!');
60 c = fgetc (stdin);
61 ASSERT (c == '/');
63 return test_exit_status;
65 case '2':
66 /* Check fflush after a non-backup ungetc() call. This is case 2a in
67 terms of
68 <https://lists.gnu.org/r/bug-gnulib/2008-03/msg00131.html>,
69 according to the Austin Group's resolution on 2009-01-08. */
70 /* Check that fflush after a non-backup ungetc() call discards the
71 ungetc buffer. This is mandated by POSIX
72 <https://pubs.opengroup.org/onlinepubs/9699919799/functions/fflush.html>:
73 "...any characters pushed back onto the stream by ungetc()
74 or ungetwc() that have not subsequently been read from the
75 stream shall be discarded..." */
77 c = fgetc (stdin);
78 ASSERT (c == '#');
80 c = fgetc (stdin);
81 ASSERT (c == '!');
83 /* Here the file-position indicator must be 2. */
85 c = ungetc ('@', stdin);
86 ASSERT (c == '@');
88 fflush (stdin);
90 /* Here the file-position indicator must be 1. */
92 c = fgetc (stdin);
93 ASSERT (c == '!');
95 c = fgetc (stdin);
96 ASSERT (c == '/');
98 return test_exit_status;
101 return 1;