t_getgroups: No longer expected to fail

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2021-06-02 12:02:56 -06:00
parent 4bc2174a1b
commit bf26ea7755

View file

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