1 /* Common definitions for pread and pwrite.
2 Copyright (C) 2016-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
25 static void do_prepare (void);
26 #define PREPARE(argc, argv) do_prepare ()
27 static int do_test (void);
28 #define TEST_FUNCTION do_test ()
30 /* This defines the `main' function and some more. */
31 #include <test-skeleton.c>
33 /* These are for the temporary file we generate. */
40 fd
= create_temp_file ("tst-preadwrite.", &name
);
42 error (EXIT_FAILURE
, errno
, "cannot create temporary file");
47 do_test_with_offset (off_t offset
)
54 memset (buf
, '\0', sizeof (buf
));
55 memset (res
, '\xff', sizeof (res
));
57 if (write (fd
, buf
, sizeof (buf
)) != sizeof (buf
))
58 error (EXIT_FAILURE
, errno
, "during write");
60 for (i
= 100; i
< 200; ++i
)
62 ret
= pwrite (fd
, buf
+ 100, 100, offset
+ 100);
64 error (EXIT_FAILURE
, errno
, "during pwrite");
66 for (i
= 450; i
< 600; ++i
)
68 ret
= pwrite (fd
, buf
+ 450, 150, offset
+ 450);
70 error (EXIT_FAILURE
, errno
, "during pwrite");
72 ret
= pread (fd
, res
, sizeof (buf
) - 50, offset
+ 50);
74 error (EXIT_FAILURE
, errno
, "during pread");
76 if (memcmp (buf
+ 50, res
, ret
) != 0)
78 printf ("error: read of pread != write of pwrite\n");