From owner-svn-src-head@freebsd.org Wed Dec 30 18:15:05 2015 Return-Path: Delivered-To: svn-src-head@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 414D3A55AD8; Wed, 30 Dec 2015 18:15:05 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-ob0-x234.google.com (mail-ob0-x234.google.com [IPv6:2607:f8b0:4003:c01::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0CE0D1304; Wed, 30 Dec 2015 18:15:05 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mail-ob0-x234.google.com with SMTP id ba1so182551413obb.3; Wed, 30 Dec 2015 10:15:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=8UCpr7FKkny5b+NRxvugHITkpKuNRF2/PfUWc3d8l3Y=; b=nzwSVsasACcol3L6+VgBxkRVAcLpV9ANmwptFQRaHcocrGARmREEIEOmzHb3VuBVi4 OGtFkAgc6XvbMKa1JQHSWi/QygOaQdJ9iXXkEFikJ/lM2RqBTa4Ml6kQrSZteBBnDnV6 WTE0MLHQqX2nny4QR0T0Upsmmefrq7CB0ql+EndhH7PiMHKYc8K3ks4tRhxS821R407s 0Z0UC5/o537mJglBLqrflJj9UqSIuzlXDrazySad3hrVynEU+SMHVFo7NZ6a9PreYGJb IC1PQGwQkNK1rlc/hO9XrlhVYOnnM5Nl5nJ92H8ws25naZIShv0CU1+93HLh2hWlCxvB tPnQ== X-Received: by 10.182.108.229 with SMTP id hn5mr43540337obb.75.1451499304412; Wed, 30 Dec 2015 10:15:04 -0800 (PST) Received: from ?IPv6:2601:601:800:126d:9910:6b8e:28b:6700? ([2601:601:800:126d:9910:6b8e:28b:6700]) by smtp.gmail.com with ESMTPSA id px4sm10031942oec.7.2015.12.30.10.15.01 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 30 Dec 2015 10:15:02 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: svn commit: r292914 - in head: tests/sys/kern tools/regression/sockets/unix_passfd From: NGie Cooper In-Reply-To: <9CE6F38D-FD5A-4EF0-BFA8-4002ED3519A2@FreeBSD.org> Date: Wed, 30 Dec 2015 10:15:00 -0800 Cc: Garrett Cooper , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <02D10D41-F768-4463-BAE7-8E395C0986B8@gmail.com> References: <201512301115.tBUBF7Wr038402@repo.freebsd.org> <9CE6F38D-FD5A-4EF0-BFA8-4002ED3519A2@FreeBSD.org> To: "Bjoern A. Zeeb" X-Mailer: Apple Mail (2.2104) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Dec 2015 18:15:05 -0000 > On Dec 30, 2015, at 08:31, Bjoern A. Zeeb wrote: >=20 >>=20 >> On 30 Dec 2015, at 11:15 , Garrett Cooper wrote: >>=20 >> Author: ngie >> Date: Wed Dec 30 11:15:07 2015 >> New Revision: 292914 >> URL: https://svnweb.freebsd.org/changeset/base/292914 >>=20 >> Log: >> Integrate tools/regression/sockets/unix_passfd into the FreeBSD test >> suite as tests/sys/kern/unix_passfd_test >>=20 >> - Convert testcases to ATF >> - Fix an alignment issues >> - Mark rights_creds_payload(..) as an expected failure (see PR # = 181741) >>=20 >> Based [in part] on the following Differential Revision: >> https://reviews.freebsd.org/D689 >>=20 >> MFC after: 1 week >> Submitted by: markj >> Sponsored by: EMC / Isilon Storage Division >=20 > n all gcc platforms this fails: >=20 > /scratch/tmp/bz/head.svn/tests/sys/kern/unix_passfd_test.c: In = function 'sendfd': > /scratch/tmp/bz/head.svn/tests/sys/kern/unix_passfd_test.c:146: = warning: declaration of 'sendfd' shadows a global declaration > /scratch/tmp/bz/head.svn/tests/sys/kern/unix_passfd_test.c:147: = warning: shadowed declaration is here > /scratch/tmp/bz/head.svn/tests/sys/kern/unix_passfd_test.c: In = function 'recvfd': > /scratch/tmp/bz/head.svn/tests/sys/kern/unix_passfd_test.c:195: = warning: declaration of 'recvfd' shadows a global declaration > /scratch/tmp/bz/head.svn/tests/sys/kern/unix_passfd_test.c:196: = warning: shadowed declaration is here Ugh=E2=80=A6 yeah... I forgot about that (I did this work before = in a different branch, but it got wiped out). Thanks for the report! I=E2=80=99ve fixed it in r292957. -NGie=