Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Jul 2021 20:10:05 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 0f4cb36cef40 - stable/13 - t_getgroups: No longer expected to fail
Message-ID:  <202107072010.167KA5U8056582@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by imp:

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

commit 0f4cb36cef406cc7dae7100df82297f1a4b16585
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2021-06-02 18:02:56 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2021-07-07 20:09:44 +0000

    t_getgroups: No longer expected to fail
    
    Sponsored by:           Netflix
    
    (cherry picked from commit bf26ea77553931c22e72ddf1f9df6fb51fcbadfe)
---
 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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107072010.167KA5U8056582>