Make fflush after ungetc work on BSD platforms.
[gnulib.git] / tests / test-fflush2.c
1 /* Test of POSIX compatible fflush() function.
2    Copyright (C) 2008 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 /* This test can only be made to work on specific platforms.  */
24 #if defined _IO_ferror_unlocked || defined __sferror /* GNU libc, BeOS; FreeBSD, NetBSD, OpenBSD, MacOS X, Cygwin */
25 # define ASSERT(expr) \
26   do                                                                         \
27     {                                                                        \
28       if (!(expr))                                                           \
29         {                                                                    \
30           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
31           abort ();                                                          \
32         }                                                                    \
33     }                                                                        \
34   while (0)
35 #else
36 # define ASSERT(expr) \
37   do                                                                         \
38     {                                                                        \
39       if (!(expr))                                                           \
40         {                                                                    \
41           printf ("Skipping test: expected failure on this platform\n");     \
42           exit (77);                                                         \
43         }                                                                    \
44     }                                                                        \
45   while (0)
46 #endif
47
48 int
49 main (int argc, char **argv)
50 {
51   /* Check that fflush after a non-backup ungetc() call discards the ungetc
52      buffer.  This is mandated by POSIX
53      <http://www.opengroup.org/susv3/functions/ungetc.html>:
54        "The value of the file-position indicator for the stream after
55         reading or discarding all pushed-back bytes shall be the same
56         as it was before the bytes were pushed back."  */
57   int c;
58
59   c = fgetc (stdin);
60   ASSERT (c == '#');
61
62   c = fgetc (stdin);
63   ASSERT (c == '!');
64
65   /* Here the file-position indicator must be 2.  */
66
67   c = ungetc ('@', stdin);
68   ASSERT (c == '@');
69
70   fflush (stdin);
71
72   /* Here the file-position indicator must be 2 again.  */
73
74   c = fgetc (stdin);
75   ASSERT (c == '/');
76
77   return 0;
78 }