Pass test-freadseek on cygwin.
[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 #if 0
52   /* Check fflush after a backup ungetc() call.  This is case 1 in terms of
53      <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00131.html>.
54      The Austin Group has not yet decided how this should behave.  */
55 #endif
56 #if 0
57   /* Check fflush after a non-backup ungetc() call.  This is case 2 in terms of
58      <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00131.html>.
59      The Austin Group has not yet decided how this should behave.  */
60   /* Check that fflush after a non-backup ungetc() call discards the ungetc
61      buffer.  This is mandated by POSIX
62      <http://www.opengroup.org/susv3/functions/ungetc.html>:
63        "The value of the file-position indicator for the stream after
64         reading or discarding all pushed-back bytes shall be the same
65         as it was before the bytes were pushed back."  */
66   int c;
67
68   c = fgetc (stdin);
69   ASSERT (c == '#');
70
71   c = fgetc (stdin);
72   ASSERT (c == '!');
73
74   /* Here the file-position indicator must be 2.  */
75
76   c = ungetc ('@', stdin);
77   ASSERT (c == '@');
78
79   fflush (stdin);
80
81   /* Here the file-position indicator must be 2 again.  */
82
83   c = fgetc (stdin);
84   ASSERT (c == '/');
85 #endif
86
87   return 0;
88 }