Home | History | Annotate | Download | only in c063

Lines Matching refs:utimensat

52 #define FILE "dir/utimensat"
53 #define BASEFILE "utimensat"
87 atf_tc_set_md_var(tc, "descr", "See that utimensat works with fd");
101 RL(utimensat(dfd, BASEFILE, tptr, 0));
113 "See that utimensat works with fd as AT_FDCWD");
126 RL(utimensat(AT_FDCWD, BASEFILE, tptr, 0));
137 "See that utimensat fails with fd as AT_FDCWD and bad path");
142 ATF_CHECK_ERRNO(ENOENT, utimensat(AT_FDCWD, FILEERR, tptr, 0) == -1);
149 "See that utimensat fail with bad path");
157 ATF_CHECK_ERRNO(ENOENT, utimensat(dfd, FILEERR, tptr, 0) == -1);
165 "See that utimensat fails with bad fdat");
178 ATF_CHECK_ERRNO(ENOENT, utimensat(dfd, BASEFILE, tptr, 0) == -1);
186 "See that utimensat fails with fd as -1");
196 ATF_CHECK_ERRNO(EBADF, utimensat(-1, FILE, tptr, 0) == -1);
202 atf_tc_set_md_var(tc, "descr", "See that utimensat works on symlink");
215 ATF_CHECK_ERRNO(ENOENT, utimensat(dfd, BASELINK, tptr, 0) == -1);
217 RL(utimensat(dfd, BASELINK, tptr, AT_SYMLINK_NOFOLLOW));