Some files lack required #include <sys/stat.h>.
The faccessat test fails because it tries to use AT_SYMLINK_NOFOLLOW with
faccessat(), which is not specified by POSIX.1-2008.
Differential D1411
Link lib/libc/c063 tests to the build. jilles on Jan 2 2015, 1:26 PM. Authored by Tags None Referenced Files
Subscribers None
Details
Some files lack required #include <sys/stat.h>. The faccessat test fails because it tries to use AT_SYMLINK_NOFOLLOW with buildworld and installworld, kyua test in /usr/tests/lib/libc/c063.
Diff Detail
Event TimelineComment Actions Thanks! Forgot to complete this..
Comment Actions "The faccessat test fails because it tries to use AT_SYMLINK_NOFOLLOW with The testcase should either be #ifdef NetBSD'ed out, or have a block like this added to it: #ifdef __FreeBSD__ atf_tc_expect_fail("Depends on non-standard behavior not mentioned in POSIX.1-2008"); #endif |