From owner-svn-src-all@freebsd.org Tue Jan 10 10:06:17 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 211EECA8CE3; Tue, 10 Jan 2017 10:06:17 +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 E45B317C7; Tue, 10 Jan 2017 10:06:16 +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 v0AA6GK4007973; Tue, 10 Jan 2017 10:06:16 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0AA6GO8007972; Tue, 10 Jan 2017 10:06:16 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201701101006.v0AA6GO8007972@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Tue, 10 Jan 2017 10:06:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org Subject: svn commit: r311868 - vendor/NetBSD/tests/dist/lib/libc/ttyio X-SVN-Group: vendor 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, 10 Jan 2017 10:06:17 -0000 Author: ngie Date: Tue Jan 10 10:06:15 2017 New Revision: 311868 URL: https://svnweb.freebsd.org/changeset/base/311868 Log: Import lib/libc/ttyio/t_ttyio.c,1.3 Modified: vendor/NetBSD/tests/dist/lib/libc/ttyio/t_ttyio.c Modified: vendor/NetBSD/tests/dist/lib/libc/ttyio/t_ttyio.c ============================================================================== --- vendor/NetBSD/tests/dist/lib/libc/ttyio/t_ttyio.c Tue Jan 10 10:02:44 2017 (r311867) +++ vendor/NetBSD/tests/dist/lib/libc/ttyio/t_ttyio.c Tue Jan 10 10:06:15 2017 (r311868) @@ -1,4 +1,4 @@ -/* $NetBSD: t_ttyio.c,v 1.2 2011/04/19 20:07:53 martin Exp $ */ +/* $NetBSD: t_ttyio.c,v 1.3 2017/01/10 01:31:40 christos Exp $ */ /* * Copyright (c) 2001, 2008 The NetBSD Foundation, Inc. @@ -32,7 +32,7 @@ #include __COPYRIGHT("@(#) Copyright (c) 2008\ The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: t_ttyio.c,v 1.2 2011/04/19 20:07:53 martin Exp $"); +__RCSID("$NetBSD: t_ttyio.c,v 1.3 2017/01/10 01:31:40 christos Exp $"); #include #include @@ -150,8 +150,9 @@ ATF_TC_BODY(ioctl, tc) /* wait for last child */ sa.sa_handler = SIG_DFL; REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1); - (void) wait(NULL); + (void)wait(NULL); + (void)close(s); ATF_REQUIRE_EQ(rc, 0); }