From owner-svn-src-all@freebsd.org Tue May 23 19:45:32 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE027D7A2EA; Tue, 23 May 2017 19:45:32 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF6D61F85; Tue, 23 May 2017 19:45:32 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4NJjV3p085054; Tue, 23 May 2017 19:45:31 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4NJjVf1085053; Tue, 23 May 2017 19:45:31 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201705231945.v4NJjVf1085053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Tue, 23 May 2017 19:45:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r318756 - stable/10/contrib/netbsd-tests/lib/libc/rpc X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 May 2017 19:45:33 -0000 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 -#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); }