netbsd-tests: Remove an xfail annotation

The test passes after commit 5ab6ed93cd
("faccessat(2): Honor AT_SYMLINK_NOFOLLOW").

Reported by:	Jenkins

(cherry picked from commit 460464b2e0)
This commit is contained in:
Mark Johnston 2024-08-29 16:45:09 +00:00
parent b40faa5f01
commit 2ee5293d3a

View file

@ -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);