1 /* futimesat basic tests.
2 Copyright (C) 2021-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/>. */
29 #include <support/test-driver.h>
30 #include <support/temp_file.h>
31 #include <support/xunistd.h>
34 # define struct_stat struct stat64
35 # define fstat fstat64
36 # define fstatat fstatat64
42 prepare (int argc
, char *argv
[])
44 size_t test_dir_len
= strlen (test_dir
);
45 static const char dir_name
[] = "/tst-futimesat.XXXXXX";
47 size_t dirbuflen
= test_dir_len
+ sizeof (dir_name
);
48 char *dirbuf
= malloc (dirbuflen
);
51 puts ("out of memory");
55 snprintf (dirbuf
, dirbuflen
, "%s%s", test_dir
, dir_name
);
56 if (mkdtemp (dirbuf
) == NULL
)
58 puts ("cannot create temporary directory");
62 add_temp_file (dirbuf
);
64 dir_fd
= open (dirbuf
, O_RDONLY
| O_DIRECTORY
);
67 puts ("cannot open directory");
71 #define PREPARE prepare
76 /* fdopendir takes over the descriptor, make a copy. */
77 int dupfd
= dup (dir_fd
);
83 if (lseek (dupfd
, 0, SEEK_SET
) != 0)
85 puts ("1st lseek failed");
89 /* The directory should be empty safe the . and .. files. */
90 DIR *dir
= fdopendir (dupfd
);
93 puts ("fdopendir failed");
97 while ((d
= readdir64 (dir
)) != NULL
)
98 if (strcmp (d
->d_name
, ".") != 0 && strcmp (d
->d_name
, "..") != 0)
100 printf ("temp directory contains file \"%s\"\n", d
->d_name
);
105 /* Try to create a file. */
106 int fd
= openat (dir_fd
, "some-file", O_CREAT
|O_RDWR
|O_EXCL
, 0666);
111 puts ("*at functions not supported");
115 puts ("file creation failed");
118 xwrite (fd
, "hello", 5);
119 puts ("file created");
122 if (fstat (fd
, &st1
) != 0)
124 puts ("fstat64 failed");
130 struct timeval tv
[2];
131 tv
[0].tv_sec
= st1
.st_atime
+ 1;
133 tv
[1].tv_sec
= st1
.st_mtime
+ 1;
135 if (futimesat (dir_fd
, "some-file", tv
) != 0)
137 puts ("futimesat failed");
142 if (fstatat (dir_fd
, "some-file", &st2
, 0) != 0)
144 puts ("fstatat64 failed");
148 if (st2
.st_mtime
!= tv
[1].tv_sec
149 #ifdef _STATBUF_ST_NSEC
150 || st2
.st_mtim
.tv_nsec
!= 0
154 puts ("stat shows different mtime");
159 if (unlinkat (dir_fd
, "some-file", 0) != 0)
161 puts ("unlinkat failed");
170 #include <support/test-driver.c>