truncate: New module.
[gnulib/ericb.git] / tests / test-fflush2.c
blob4d1237bee2625e39a9195dc22be1d76cc3a61c9f
1 /* Test of POSIX compatible fflush() function.
2 Copyright (C) 2008-2017 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 <http://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 <http://lists.gnu.org/archive/html/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 0;
65 case '2':
66 /* Check fflush after a non-backup ungetc() call. This is case 2a in
67 terms of
68 <http://lists.gnu.org/archive/html/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 <http://www.opengroup.org/susv3/functions/ungetc.html>:
73 "The value of the file-position indicator for the stream after
74 reading or discarding all pushed-back bytes shall be the same
75 as it was before the bytes were pushed back."
76 <http://www.opengroup.org/austin/aardvark/latest/xshbug3.txt>
77 "[After fflush(),] the file offset of the underlying open file
78 description shall be set to the file position of the stream, and
79 any characters pushed back onto the stream by ungetc() or
80 ungetwc() that have not subsequently been read from the stream
81 shall be discarded." */
83 c = fgetc (stdin);
84 ASSERT (c == '#');
86 c = fgetc (stdin);
87 ASSERT (c == '!');
89 /* Here the file-position indicator must be 2. */
91 c = ungetc ('@', stdin);
92 ASSERT (c == '@');
94 fflush (stdin);
96 /* Here the file-position indicator must be 1. */
98 c = fgetc (stdin);
99 ASSERT (c == '!');
101 c = fgetc (stdin);
102 ASSERT (c == '/');
104 return 0;
107 return 1;