git: 460464b2e031 - main - netbsd-tests: Remove an xfail annotation
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 29 Aug 2024 16:48:26 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=460464b2e031881d03ffb24ec4ca5b7cbeadb5b7
commit 460464b2e031881d03ffb24ec4ca5b7cbeadb5b7
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2024-08-29 16:45:09 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-08-29 16:48:18 +0000
netbsd-tests: Remove an xfail annotation
The test passes after commit 5ab6ed93cd36
("faccessat(2): Honor AT_SYMLINK_NOFOLLOW").
Reported by: Jenkins
---
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);