diff options
author | ngie <ngie@FreeBSD.org> | 2014-10-23 05:58:02 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2014-10-23 05:58:02 +0000 |
commit | a93e93794769b16fea8ce13335d3ca1b5e5b818f (patch) | |
tree | 27aac7d14002590fbf8715955ce18ae82c41b881 /contrib/netbsd-tests/lib/libc/sys/t_getgroups.c | |
parent | b5892a07cc0352a28206a611d05a8b9ebe491293 (diff) | |
download | FreeBSD-src-a93e93794769b16fea8ce13335d3ca1b5e5b818f.zip FreeBSD-src-a93e93794769b16fea8ce13335d3ca1b5e5b818f.tar.gz |
Expect getgroups_err to fail on FreeBSD
PR: 189941
Submitted by: pho
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'contrib/netbsd-tests/lib/libc/sys/t_getgroups.c')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/sys/t_getgroups.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c b/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c index 9a8ec8e..12628c2 100644 --- a/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c +++ b/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c @@ -57,6 +57,9 @@ ATF_TC_BODY(getgroups_err, tc) errno = 0; +#if defined(__FreeBSD__) + atf_tc_expect_fail("Reported as kern/189941"); +#endif ATF_REQUIRE(getgroups(-1, gidset) == -1); ATF_REQUIRE(errno == EINVAL); } |