usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-fpending.c
blobd8dafaaca9760e6b8f99a6323f85fba17c1270c6
1 /* Ensure that __fpending works.
3 Copyright (C) 2004, 2007-2024 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>.
18 Written by Jim Meyering. */
20 #include <config.h>
22 #include "fpending.h"
24 #include <stdio.h>
25 #include <stdlib.h>
27 #include "macros.h"
29 int
30 main (void)
32 ASSERT (__fpending (stdout) == 0);
34 fputs ("foo", stdout);
35 ASSERT (__fpending (stdout) == 3);
37 fflush (stdout);
38 ASSERT (__fpending (stdout) == 0);
40 return test_exit_status;