Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / posix / tst-truncate-common.c
blobf9fb6d155d33f0b5c642f8e0f3b6cb73b74cb01e
1 /* Common f{truncate} tests definitions.
2 Copyright (C) 2016-2018 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 <unistd.h>
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <unistd.h>
24 static void do_prepare (void);
25 #define PREPARE(argc, argv) do_prepare ()
26 static int do_test (void);
27 #define TEST_FUNCTION do_test ()
29 #include <test-skeleton.c>
31 static char *temp_filename;
32 static int temp_fd;
34 static void
35 do_prepare (void)
37 temp_fd = create_temp_file ("tst-trucate.", &temp_filename);
38 if (temp_fd == -1)
40 printf ("cannot create temporary file: %m\n");
41 exit (1);
45 #define FAIL(str) \
46 do { printf ("error: %s (line %d)\n", str, __LINE__); return 1; } while (0)
48 static int
49 do_test_with_offset (off_t offset)
51 struct stat st;
52 char buf[1000];
54 memset (buf, 0xcf, sizeof (buf));
56 if (pwrite (temp_fd, buf, sizeof (buf), offset) != sizeof (buf))
57 FAIL ("write failed");
58 if (fstat (temp_fd, &st) < 0 || st.st_size != (offset + sizeof (buf)))
59 FAIL ("initial size wrong");
61 if (ftruncate (temp_fd, offset + 800) < 0)
62 FAIL ("size reduction with ftruncate failed");
63 if (fstat (temp_fd, &st) < 0 || st.st_size != (offset + 800))
64 FAIL ("size after reduction with ftruncate is incorrect");
66 /* The following test covers more than POSIX. POSIX does not require
67 that ftruncate() can increase the file size. But we are testing
68 Unix systems. */
69 if (ftruncate (temp_fd, offset + 1200) < 0)
70 FAIL ("size increate with ftruncate failed");
71 if (fstat (temp_fd, &st) < 0 || st.st_size != (offset + 1200))
72 FAIL ("size after increase is incorrect");
74 if (truncate (temp_filename, offset + 800) < 0)
75 FAIL ("size reduction with truncate failed");
76 if (fstat (temp_fd, &st) < 0 || st.st_size != (offset + 800))
77 FAIL ("size after reduction with truncate incorrect");
79 /* The following test covers more than POSIX. POSIX does not require
80 that truncate() can increase the file size. But we are testing
81 Unix systems. */
82 if (truncate (temp_filename, (offset + 1200)) < 0)
83 FAIL ("size increase with truncate failed");
84 if (fstat (temp_fd, &st) < 0 || st.st_size != (offset + 1200))
85 FAIL ("size increase with truncate is incorrect");
87 return 0;