From bf26ea77553931c22e72ddf1f9df6fb51fcbadfe Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 2 Jun 2021 12:02:56 -0600 Subject: [PATCH] t_getgroups: No longer expected to fail Sponsored by: Netflix --- contrib/netbsd-tests/lib/libc/sys/t_getgroups.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c b/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c index 7dedca445288..9a8ec8ede271 100644 --- a/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c +++ b/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c @@ -57,9 +57,6 @@ ATF_TC_BODY(getgroups_err, tc) errno = 0; -#ifdef __FreeBSD__ - atf_tc_expect_fail("Reported as kern/189941"); -#endif ATF_REQUIRE(getgroups(-1, gidset) == -1); ATF_REQUIRE(errno == EINVAL); }