usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-fgetc.c
blobfb14451d94ff806a901c99ed227ba3402f00871e
1 /* Test of fgetc() function.
2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
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, or (at your option)
7 any later version.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 #include <stdio.h>
21 #include "signature.h"
22 SIGNATURE_CHECK (fgetc, int, (FILE *));
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <unistd.h>
28 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER
29 # include "msvc-inval.h"
30 #endif
32 #include "macros.h"
34 int
35 main ()
37 const char *filename = "test-fgetc.txt";
39 /* We don't have an fgetc() function that installs an invalid parameter
40 handler so far. So install that handler here, explicitly. */
41 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER \
42 && MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING
43 gl_msvc_inval_ensure_handler ();
44 #endif
46 /* Prepare a file. */
48 const char text[] = "hello world";
49 int fd = open (filename, O_RDWR | O_CREAT | O_TRUNC, 0600);
50 ASSERT (fd >= 0);
51 ASSERT (write (fd, text, sizeof (text)) == sizeof (text));
52 ASSERT (close (fd) == 0);
55 /* Test that fgetc() sets errno if someone else closes the stream
56 fd behind the back of stdio. */
57 #if !defined __ANDROID__ /* fdsan */
59 FILE *fp = fopen (filename, "r");
60 ASSERT (fp != NULL);
61 ASSERT (close (fileno (fp)) == 0);
62 errno = 0;
63 ASSERT (fgetc (fp) == EOF);
64 ASSERT (errno == EBADF);
65 ASSERT (ferror (fp));
66 fclose (fp);
68 #endif
70 /* Test that fgetc() sets errno if the stream was constructed with
71 an invalid file descriptor. */
73 FILE *fp = fdopen (-1, "r");
74 if (fp != NULL)
76 errno = 0;
77 ASSERT (fgetc (fp) == EOF);
78 ASSERT (errno == EBADF);
79 ASSERT (ferror (fp));
80 fclose (fp);
84 FILE *fp;
85 close (99);
86 fp = fdopen (99, "r");
87 if (fp != NULL)
89 errno = 0;
90 ASSERT (fgetc (fp) == EOF);
91 ASSERT (errno == EBADF);
92 ASSERT (ferror (fp));
93 fclose (fp);
97 /* Clean up. */
98 unlink (filename);
100 return test_exit_status;