git: 2ee5293d3a9c - stable/14 - netbsd-tests: Remove an xfail annotation
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 13 Oct 2024 16:25:26 UTC
The branch stable/14 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=2ee5293d3a9cd42b84f2350620d84c805bd0aa16 commit 2ee5293d3a9cd42b84f2350620d84c805bd0aa16 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2024-08-29 16:45:09 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2024-10-13 16:25:18 +0000 netbsd-tests: Remove an xfail annotation The test passes after commit 5ab6ed93cd36 ("faccessat(2): Honor AT_SYMLINK_NOFOLLOW"). Reported by: Jenkins (cherry picked from commit 460464b2e031881d03ffb24ec4ca5b7cbeadb5b7) --- contrib/netbsd-tests/lib/libc/c063/t_faccessat.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/contrib/netbsd-tests/lib/libc/c063/t_faccessat.c b/contrib/netbsd-tests/lib/libc/c063/t_faccessat.c index 7de4f61637a4..5e6829f7ea45 100644 --- a/contrib/netbsd-tests/lib/libc/c063/t_faccessat.c +++ b/contrib/netbsd-tests/lib/libc/c063/t_faccessat.c @@ -166,9 +166,6 @@ ATF_TC_BODY(faccessat_fdlink, tc) ATF_REQUIRE(faccessat(dfd, BASELINK, F_OK, 0) == -1); ATF_REQUIRE(errno == ENOENT); -#ifdef __FreeBSD__ - atf_tc_expect_fail("Depends on non-standard behavior not mentioned in POSIX.1-2008"); -#endif ATF_REQUIRE(faccessat(dfd, BASELINK, F_OK, AT_SYMLINK_NOFOLLOW) == 0); ATF_REQUIRE(close(dfd) == 0);