1 /* Test the pread function.
2 Copyright (C) 2009-2020 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 of the License, or
7 (at your option) 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 Jim Meyering. */
23 #include "signature.h"
24 SIGNATURE_CHECK (pread
, ssize_t
, (int, void *, size_t, off_t
));
26 #include <sys/types.h>
32 #define N (sizeof buf - 1)
37 char const *file
= "in";
39 char buf
[] = "0123456789";
44 fd
= open (file
, O_CREAT
| O_WRONLY
, 0600);
46 ASSERT (write (fd
, buf
, N
) == N
);
47 ASSERT (close (fd
) == 0);
49 fd
= open (file
, O_RDONLY
);
52 for (pos
= 0; pos
< 3; pos
++)
55 off_t init_pos
= lseek (fd
, pos
, SEEK_SET
);
56 ASSERT (init_pos
== pos
);
58 for (i
= 0; i
< N
; i
++)
61 ASSERT (pread (fd
, &byte_buf
, 1, i
) == 1);
62 ASSERT (byte_buf
== buf
[i
]);
63 ASSERT (lseek (fd
, 0, SEEK_CUR
) == init_pos
);
68 /* Invalid offset must evoke failure with EINVAL. */
70 ASSERT (pread (fd
, &byte
, 1, (off_t
) -1) == -1);
71 ASSERT (errno
== EINVAL
72 || errno
== EFBIG
/* seen on OpenBSD 4.9 */
76 ASSERT (close (fd
) == 0);
80 /* Trying to operate on a pipe must evoke failure with ESPIPE.
81 This assumes that stdin is a pipe, and hence not seekable. */
82 ASSERT (pread (STDIN_FILENO
, &byte
, 1, 1) == -1);
83 ASSERT (errno
== ESPIPE
);
86 /* Test behaviour for invalid file descriptors. */
90 ASSERT (pread (-1, &byte
, 1, 0) == -1);
91 ASSERT (errno
== EBADF
);
97 ASSERT (pread (99, &byte
, 1, 0) == -1);
98 ASSERT (errno
== EBADF
);