Avoid test-fflush2.sh failure on mingw.
[gnulib.git] / tests / test-fflush2.c
1 /* Test of POSIX compatible fflush() function.
2    Copyright (C) 2008-2009 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>.  */
16
17 #include <config.h>
18
19 #include <stdio.h>
20
21 #include <stdlib.h>
22
23 #include "binary-io.h"
24
25 #define ASSERT(expr) \
26   do                                                                         \
27     {                                                                        \
28       if (!(expr))                                                           \
29         {                                                                    \
30           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
31           fflush (stderr);                                                   \
32           abort ();                                                          \
33         }                                                                    \
34     }                                                                        \
35   while (0)
36
37 int
38 main (int argc, char **argv)
39 {
40   int c;
41
42   /* Avoid the well-known bugs of fflush() on streams in O_TEXT mode
43      on native Windows platforms.  */
44   SET_BINARY (0);
45
46   if (argc > 1)
47     switch (argv[1][0])
48       {
49       case '1':
50         /* Check fflush after a backup ungetc() call.  This is case 1a in
51            terms of
52            <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00131.html>,
53            according to the Austin Group's resolution on 2009-01-08.  */
54
55         c = fgetc (stdin);
56         ASSERT (c == '#');
57
58         c = fgetc (stdin);
59         ASSERT (c == '!');
60
61         /* Here the file-position indicator must be 2.  */
62
63         c = ungetc ('!', stdin);
64         ASSERT (c == '!');
65
66         fflush (stdin);
67
68         /* Here the file-position indicator must be 1.  */
69
70         c = fgetc (stdin);
71         ASSERT (c == '!');
72
73         c = fgetc (stdin);
74         ASSERT (c == '/');
75
76         return 0;
77
78       case '2':
79         /* Check fflush after a non-backup ungetc() call.  This is case 2a in
80            terms of
81            <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00131.html>,
82            according to the Austin Group's resolution on 2009-01-08.  */
83         /* Check that fflush after a non-backup ungetc() call discards the
84            ungetc buffer.  This is mandated by POSIX
85            <http://www.opengroup.org/susv3/functions/ungetc.html>:
86              "The value of the file-position indicator for the stream after
87               reading or discarding all pushed-back bytes shall be the same
88               as it was before the bytes were pushed back."
89            <http://www.opengroup.org/austin/aardvark/latest/xshbug3.txt>
90              "[After fflush(),] the file offset of the underlying open file
91               description shall be set to the file position of the stream, and
92               any characters pushed back onto the stream by ungetc() or
93               ungetwc() that have not subsequently been read from the stream
94               shall be discarded."  */
95
96         c = fgetc (stdin);
97         ASSERT (c == '#');
98
99         c = fgetc (stdin);
100         ASSERT (c == '!');
101
102         /* Here the file-position indicator must be 2.  */
103
104         c = ungetc ('@', stdin);
105         ASSERT (c == '@');
106
107         fflush (stdin);
108
109         /* Here the file-position indicator must be 1.  */
110
111         c = fgetc (stdin);
112         ASSERT (c == '!');
113
114         c = fgetc (stdin);
115         ASSERT (c == '/');
116
117         return 0;
118       }
119
120   return 1;
121 }