usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-closein.c
blobbfd741a0aec0e046d90a3da4a2695eb1b5ffa9b4
1 /* Test of closein module.
2 Copyright (C) 2007-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 /* Written by Eric Blake. */
19 #include <config.h>
21 #include "closein.h"
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <unistd.h>
27 #include "binary-io.h"
28 #include "ignore-value.h"
30 /* With no arguments, do nothing. With arguments, attempt to consume
31 first 6 bytes of stdin. In either case, let exit() take care of
32 closing std streams and changing exit status if ferror(stdin). */
33 int
34 main (int argc, char **argv)
36 char buf[7];
37 atexit (close_stdin);
39 /* close_stdin currently relies on ftell, but mingw ftell is
40 unreliable on text mode input. */
41 set_binary_mode (0, O_BINARY);
43 if (argc > 2)
44 close (0);
46 if (argc > 1)
47 ignore_value (fread (buf, 1, 6, stdin));
48 return 0;