Add sysdeps/ieee754/soft-fp.
[glibc.git] / posix / tst-preadwrite-common.c
blob9468ed85a9475847a954b67f271f90c8ee422e38
1 /* Common definitions for pread and pwrite.
2 Copyright (C) 2016-2017 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 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <error.h>
21 #include <string.h>
22 #include <unistd.h>
23 #include <sys/stat.h>
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 /* We might need a bit longer timeout. */
31 #define TIMEOUT 20 /* sec */
33 /* This defines the `main' function and some more. */
34 #include <test-skeleton.c>
36 /* These are for the temporary file we generate. */
37 static char *name;
38 static int fd;
40 static void
41 do_prepare (void)
43 fd = create_temp_file ("tst-preadwrite.", &name);
44 if (fd == -1)
45 error (EXIT_FAILURE, errno, "cannot create temporary file");
49 static ssize_t
50 do_test_with_offset (off_t offset)
52 char buf[1000];
53 char res[1000];
54 int i;
55 ssize_t ret;
57 memset (buf, '\0', sizeof (buf));
58 memset (res, '\xff', sizeof (res));
60 if (write (fd, buf, sizeof (buf)) != sizeof (buf))
61 error (EXIT_FAILURE, errno, "during write");
63 for (i = 100; i < 200; ++i)
64 buf[i] = i;
65 ret = pwrite (fd, buf + 100, 100, offset + 100);
66 if (ret == -1)
67 error (EXIT_FAILURE, errno, "during pwrite");
69 for (i = 450; i < 600; ++i)
70 buf[i] = i;
71 ret = pwrite (fd, buf + 450, 150, offset + 450);
72 if (ret == -1)
73 error (EXIT_FAILURE, errno, "during pwrite");
75 ret = pread (fd, res, sizeof (buf) - 50, offset + 50);
76 if (ret == -1)
77 error (EXIT_FAILURE, errno, "during pread");
79 if (memcmp (buf + 50, res, ret) != 0)
81 printf ("error: read of pread != write of pwrite\n");
82 return -1;
85 return ret;