This source file includes following definitions.
- main
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include <config.h>
20
21 #include <unistd.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (pread, ssize_t, (int, void *, size_t, off_t));
25
26 #include <sys/types.h>
27 #include <fcntl.h>
28 #include <errno.h>
29
30 #include "macros.h"
31
32 #define N (sizeof buf - 1)
33
34 int
35 main (void)
36 {
37 char const *file = "in";
38 int fd;
39 char buf[] = "0123456789";
40 off_t pos;
41
42 ASSERT (file);
43
44 fd = open (file, O_CREAT | O_WRONLY, 0600);
45 ASSERT (0 <= fd);
46 ASSERT (write (fd, buf, N) == N);
47 ASSERT (close (fd) == 0);
48
49 fd = open (file, O_RDONLY);
50 ASSERT (0 <= fd);
51
52 for (pos = 0; pos < 3; pos++)
53 {
54 size_t i;
55 off_t init_pos = lseek (fd, pos, SEEK_SET);
56 ASSERT (init_pos == pos);
57
58 for (i = 0; i < N; i++)
59 {
60 char byte_buf;
61 ASSERT (pread (fd, &byte_buf, 1, i) == 1);
62 ASSERT (byte_buf == buf[i]);
63 ASSERT (lseek (fd, 0, SEEK_CUR) == init_pos);
64 }
65 }
66
67 {
68
69 char byte;
70 ASSERT (pread (fd, &byte, 1, (off_t) -1) == -1);
71 ASSERT (errno == EINVAL
72 || errno == EFBIG
73 );
74 }
75
76 ASSERT (close (fd) == 0);
77
78 {
79 char byte;
80
81
82 ASSERT (pread (STDIN_FILENO, &byte, 1, 1) == -1);
83 ASSERT (errno == ESPIPE);
84 }
85
86
87 {
88 char byte;
89 errno = 0;
90 ASSERT (pread (-1, &byte, 1, 0) == -1);
91 ASSERT (errno == EBADF);
92 }
93 {
94 char byte;
95 close (99);
96 errno = 0;
97 ASSERT (pread (99, &byte, 1, 0) == -1);
98 ASSERT (errno == EBADF);
99 }
100
101 return 0;
102 }