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