1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

netbsd-tests: Remove an xfail annotation

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

Reported by:	Jenkins
This commit is contained in:
Mark Johnston 2024-08-29 16:45:09 +00:00
parent 835cd17f87
commit 460464b2e0

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