svn commit: r318756 - stable/10/contrib/netbsd-tests/lib/libc/rpc

Ngie Cooper ngie at FreeBSD.org
Tue May 23 19:45:33 UTC 2017


Author: ngie
Date: Tue May 23 19:45:31 2017
New Revision: 318756
URL: https://svnweb.freebsd.org/changeset/base/318756

Log:
  :raw no longer SIGSEGVs on FreeBSD; revert the signal expectation
  
  This is a direct commit to ^/stable/10, since this expectation was only
  added to ^/stable/10's copy of t_raw.c.
  
  PR:		216954
  Sponsored by:	Dell EMC Isilon

Modified:
  stable/10/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c

Modified: stable/10/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
==============================================================================
--- stable/10/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c	Tue May 23 19:03:07 2017	(r318755)
+++ stable/10/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c	Tue May 23 19:45:31 2017	(r318756)
@@ -38,12 +38,6 @@ __RCSID("$NetBSD: t_rpc.c,v 1.10 2016/08
 
 #define RPCBPROC_NULL 0
 
-/* XXX (ngie): for clarity on what needs to be reverted later. */
-#define	__FreeBSD_bug_216954__
-#ifdef	__FreeBSD_bug_216954__
-#include <signal.h>
-#endif
-
 static int
 reply(caddr_t replyp, struct netbuf * raddrp, struct netconfig * nconf)
 {
@@ -331,12 +325,6 @@ ATF_TC_HEAD(raw, tc)
 
 ATF_TC_BODY(raw, tc)
 {
-#ifdef __FreeBSD__
-#ifdef __FreeBSD_bug_216954__
-	atf_tc_expect_signal(SIGSEGV,
-	    "fails with SIGSEGV only on ^/stable/10 -- bug # 216954");
-#endif
-#endif
 	rawtest(NULL);
 
 }


More information about the svn-src-all mailing list