2 Copyright (C) 2009-2017 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 <http://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake <ebb9@byu.net>, 2009. */
23 #include "signature.h"
24 SIGNATURE_CHECK (utimensat
, int, (int, char const *, struct timespec
const[2],
35 #include "stat-time.h"
38 #include "ignore-value.h"
41 #define BASE "test-utimensat.t"
43 #include "test-lutimens.h"
44 #include "test-utimens.h"
46 static int dfd
= AT_FDCWD
;
48 /* Wrap utimensat to behave like utimens. */
50 do_utimensat (char const *name
, struct timespec
const times
[2])
52 return utimensat (dfd
, name
, times
, 0);
55 /* Wrap utimensat to behave like lutimens. */
57 do_lutimensat (char const *name
, struct timespec
const times
[2])
59 return utimensat (dfd
, name
, times
, AT_SYMLINK_NOFOLLOW
);
65 int result1
; /* Skip because of no symlink support. */
66 int result2
; /* Skip because of no lutimens support. */
69 /* Clean up any trash from prior testsuite runs. */
70 ignore_value (system ("rm -rf " BASE
"*"));
72 /* Test behaviour for invalid file descriptors. */
75 ASSERT (utimensat (-1, "foo", NULL
, 0) == -1);
76 ASSERT (errno
== EBADF
);
81 ASSERT (utimensat (99, "foo", NULL
, 0) == -1);
82 ASSERT (errno
== EBADF
);
86 result1
= test_utimens (do_utimensat
, true);
87 result2
= test_lutimens (do_lutimensat
, result1
== 0);
88 dfd
= open (".", O_RDONLY
);
90 ASSERT (test_utimens (do_utimensat
, false) == result1
);
91 ASSERT (test_lutimens (do_lutimensat
, false) == result2
);
92 /* We expect 0/0, 0/77, or 77/77, but not 77/0. */
93 ASSERT (result1
<= result2
);
95 /* Directory-relative tests. */
96 ASSERT (mkdir (BASE
"dir", 0700) == 0);
97 ASSERT (chdir (BASE
"dir") == 0);
98 fd
= creat ("file", 0600);
101 ASSERT (utimensat (fd
, ".", NULL
, 0) == -1);
102 ASSERT (errno
== ENOTDIR
);
104 struct timespec ts
[2] = { { Y2K
, 0 }, { Y2K
, 0 } };
106 ASSERT (utimensat (dfd
, BASE
"dir/file", ts
, AT_SYMLINK_NOFOLLOW
) == 0);
107 ASSERT (stat ("file", &st
) == 0);
108 ASSERT (st
.st_atime
== Y2K
);
109 ASSERT (get_stat_atime_ns (&st
) == 0);
110 ASSERT (st
.st_mtime
== Y2K
);
111 ASSERT (get_stat_mtime_ns (&st
) == 0);
113 ASSERT (close (fd
) == 0);
114 ASSERT (close (dfd
) == 0);
116 ASSERT (utimensat (dfd
, ".", NULL
, 0) == -1);
117 ASSERT (errno
== EBADF
);
120 ASSERT (chdir ("..") == 0);
121 ASSERT (unlink (BASE
"dir/file") == 0);
122 ASSERT (rmdir (BASE
"dir") == 0);
123 return result1
| result2
;