tests: avoid compiler warnings
[gnulib.git] / tests / test-fseeko.c
1 /* Test of fseeko() function.
2    Copyright (C) 2007, 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 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 /* None of the files accessed by this test are large, so disable the
22    fseek link warning if we are not using the gnulib fseek module.  */
23 #if !GNULIB_FSEEK
24 # undef GL_LINK_WARNING
25 # define GL_LINK_WARNING(ignored) ((void) 0)
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>
30
31 #define ASSERT(expr) \
32   do                                                                         \
33     {                                                                        \
34       if (!(expr))                                                           \
35         {                                                                    \
36           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
37           fflush (stderr);                                                   \
38           abort ();                                                          \
39         }                                                                    \
40     }                                                                        \
41   while (0)
42
43 #ifndef FUNC_UNGETC_BROKEN
44 # define FUNC_UNGETC_BROKEN 0
45 #endif
46
47 int
48 main (int argc, char **argv _UNUSED_PARAMETER_)
49 {
50   /* Assume stdin is non-empty, seekable, and starts with '#!/bin/sh'
51      iff argc > 1.  */
52   int expected = argc > 1 ? 0 : -1;
53   /* Exit with success only if fseek/fseeko agree.  */
54   int r1 = fseeko (stdin, 0, SEEK_CUR);
55   int r2 = fseek (stdin, 0, SEEK_CUR);
56   ASSERT (r1 == r2 && r1 == expected);
57   if (argc > 1)
58     {
59       /* Test that fseek discards previously read ungetc data.  */
60       int ch = fgetc (stdin);
61       ASSERT (ch == '#');
62       ASSERT (ungetc (ch, stdin) == ch);
63       ASSERT (fseeko (stdin, 2, SEEK_SET) == 0);
64       ch = fgetc (stdin);
65       ASSERT (ch == '/');
66       if (2 < argc)
67         {
68           if (FUNC_UNGETC_BROKEN)
69             {
70               fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
71                      stderr);
72               return 77;
73             }
74           /* Test that fseek discards random ungetc data.  */
75           ASSERT (ungetc (ch ^ 0xff, stdin) == (ch ^ 0xff));
76         }
77       ASSERT (fseeko (stdin, 0, SEEK_END) == 0);
78       ASSERT (fgetc (stdin) == EOF);
79       /* Test that fseek resets end-of-file marker.  */
80       ASSERT (feof (stdin));
81       ASSERT (fseeko (stdin, 0, SEEK_END) == 0);
82       ASSERT (!feof (stdin));
83     }
84   return 0;
85 }