1 /* Test the pwrite function.
2 Copyright (C) 2009-2017 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 <http://www.gnu.org/licenses/>. */
21 #include "signature.h"
22 SIGNATURE_CHECK (pwrite
, ssize_t
, (int, const void *, size_t, off_t
));
24 #include <sys/types.h>
31 #define N (sizeof buf - 1)
36 char const *file
= "out";
38 char buf
[] = "0123456789";
45 fd
= open (file
, O_CREAT
| O_WRONLY
, 0600);
47 ASSERT (write (fd
, buf
, N
) == N
);
48 ASSERT (close (fd
) == 0);
50 fd
= open (file
, O_WRONLY
, 0600);
53 init_pos
= lseek (fd
, pos
, SEEK_SET
);
54 ASSERT (init_pos
== pos
);
56 for (i
= 0; i
< N
; i
+=2)
58 const char byte
= 'W';
59 ASSERT (pwrite (fd
, &byte
, 1, i
) == 1);
60 ASSERT (lseek (fd
, 0, SEEK_CUR
) == init_pos
);
64 /* Invalid offset must evoke failure with EINVAL. */
65 const char byte
= 'b';
66 ASSERT (pwrite (fd
, &byte
, 1, (off_t
) -1) == -1);
67 ASSERT (errno
== EINVAL
);
70 ASSERT (close (fd
) == 0);
73 fd
= open (file
, O_RDONLY
);
75 ASSERT (read (fd
, buf
, N
) == N
);
76 ASSERT (close (fd
) == 0);
77 ASSERT (strcmp ("W1W3W5W7W9",buf
) == 0);
80 /* Test behaviour for invalid file descriptors. */
84 ASSERT (pwrite (-1, &byte
, 1, 0) == -1);
85 ASSERT (errno
== EBADF
);
91 ASSERT (pwrite (99, &byte
, 1, 0) == -1);
92 ASSERT (errno
== EBADF
);