1 /* Test of fread() function.
2 Copyright (C) 2011-2012 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)
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 <http://www.gnu.org/licenses/>. */
21 #include "signature.h"
22 SIGNATURE_CHECK (fread
, size_t, (void *, size_t, size_t, FILE *));
28 #include "msvc-inval.h"
33 main (int argc
, char **argv
)
35 const char *filename
= "test-fread.txt";
37 /* We don't have an fread() function that installs an invalid parameter
38 handler so far. So install that handler here, explicitly. */
39 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER \
40 && MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING
41 gl_msvc_inval_ensure_handler ();
46 const char text
[] = "hello world";
47 int fd
= open (filename
, O_RDWR
| O_CREAT
| O_TRUNC
, 0600);
49 ASSERT (write (fd
, text
, sizeof (text
)) == sizeof (text
));
50 ASSERT (close (fd
) == 0);
53 /* Test that fread() sets errno if someone else closes the stream
54 fd behind the back of stdio. */
56 FILE *fp
= fopen (filename
, "r");
59 ASSERT (close (fileno (fp
)) == 0);
61 ASSERT (fread (buf
, 1, sizeof (buf
), fp
) == 0);
62 ASSERT (errno
== EBADF
);
67 /* Test that fread() sets errno if the stream was constructed with
68 an invalid file descriptor. */
70 FILE *fp
= fdopen (-1, "r");
75 ASSERT (fread (buf
, 1, 1, fp
) == 0);
76 ASSERT (errno
== EBADF
);
82 FILE *fp
= fdopen (99, "r");
87 ASSERT (fread (buf
, 1, 1, fp
) == 0);
88 ASSERT (errno
== EBADF
);