usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-pwrite.c
blob8886298aeb8cc517c8b03f242bbb7974b20db0ed
1 /* Test the pwrite function.
2 Copyright (C) 2009-2024 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 #include <config.h>
19 #include <unistd.h>
21 #include "signature.h"
22 SIGNATURE_CHECK (pwrite, ssize_t, (int, const void *, size_t, off_t));
24 #include <sys/types.h>
25 #include <fcntl.h>
26 #include <errno.h>
27 #include <string.h>
29 #include "macros.h"
31 #define N (sizeof buf - 1)
33 int
34 main (void)
36 char const *file = "out";
37 int fd;
38 char buf[] = "0123456789";
39 off_t pos = 2;
40 size_t i;
41 off_t init_pos;
43 ASSERT (file);
45 fd = open (file, O_CREAT | O_WRONLY, 0600);
46 ASSERT (0 <= fd);
47 ASSERT (write (fd, buf, N) == N);
48 ASSERT (close (fd) == 0);
50 fd = open (file, O_WRONLY, 0600);
51 ASSERT (0 <= fd);
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);
74 ASSERT (0 <= fd);
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. */
82 char byte = 'x';
83 errno = 0;
84 ASSERT (pwrite (-1, &byte, 1, 0) == -1);
85 ASSERT (errno == EBADF);
88 char byte = 'x';
89 close (99);
90 errno = 0;
91 ASSERT (pwrite (99, &byte, 1, 0) == -1);
92 ASSERT (errno == EBADF);
95 return test_exit_status;