From 2ee5293d3a9cd42b84f2350620d84c805bd0aa16 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Thu, 29 Aug 2024 16:45:09 +0000 Subject: [PATCH] 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 7de4f61637a..5e6829f7ea4 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);