git: bf26ea775539 - main - t_getgroups: No longer expected to fail

Warner Losh imp at FreeBSD.org
Wed Jun 2 19:25:13 UTC 2021


The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=bf26ea77553931c22e72ddf1f9df6fb51fcbadfe

commit bf26ea77553931c22e72ddf1f9df6fb51fcbadfe
Author:     Warner Losh <imp at FreeBSD.org>
AuthorDate: 2021-06-02 18:02:56 +0000
Commit:     Warner Losh <imp at FreeBSD.org>
CommitDate: 2021-06-02 19:24:47 +0000

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


More information about the dev-commits-src-main mailing list