svn commit: r273517 - head/contrib/netbsd-tests/lib/libc/sys

Garrett Cooper ngie at FreeBSD.org
Thu Oct 23 05:58:03 UTC 2014


Author: ngie
Date: Thu Oct 23 05:58:02 2014
New Revision: 273517
URL: https://svnweb.freebsd.org/changeset/base/273517

Log:
  Expect getgroups_err to fail on FreeBSD
  
  PR: 189941
  Submitted by: pho
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c

Modified: head/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c	Thu Oct 23 05:46:10 2014	(r273516)
+++ head/contrib/netbsd-tests/lib/libc/sys/t_getgroups.c	Thu Oct 23 05:58:02 2014	(r273517)
@@ -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);
 }


More information about the svn-src-all mailing list