From owner-svn-src-stable-10@FreeBSD.ORG Thu Feb 13 22:19:26 2014 Return-Path: Delivered-To: svn-src-stable-10@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F2F53286; Thu, 13 Feb 2014 22:19:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7BEA1A38; Thu, 13 Feb 2014 22:19:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1DMJPHF087119; Thu, 13 Feb 2014 22:19:25 GMT (envelope-from asomers@svn.freebsd.org) Received: (from asomers@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1DMJPH8087115; Thu, 13 Feb 2014 22:19:25 GMT (envelope-from asomers@svn.freebsd.org) Message-Id: <201402132219.s1DMJPH8087115@svn.freebsd.org> From: Alan Somers Date: Thu, 13 Feb 2014 22:19:25 +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: r261857 - in stable/10: etc/mtree tests tests/sys tools/regression/sockets/unix_seqpacket tools/regression/sockets/unix_seqpacket_exercise X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Feb 2014 22:19:26 -0000 Author: asomers Date: Thu Feb 13 22:19:24 2014 New Revision: 261857 URL: http://svnweb.freebsd.org/changeset/base/261857 Log: MFC r261081, r261133, and r261615 r261081 Replace the old unix_seqpacket and unix_seqpacket_exercise tests, which were a little broken and not automatable, with unix_seqpacket_test. It's coverage is a superset of the old tests and it uses ATF. It includes test cases for bugs kern/185813 and kern/185812. r261133 Fix the Makefiles so that the tests I submitted in r261081 will actually get built. r261615 tests/sys/Makefile use TESTS_SUBDIRS for kern instead of SUBDIRS. I don't think it makes a difference in this case, but TESTS_SUBDIRS is generally correct for subdirectories that contain tests. Added: stable/10/tests/sys/ - copied from r261081, head/tests/sys/ Deleted: stable/10/tools/regression/sockets/unix_seqpacket/ stable/10/tools/regression/sockets/unix_seqpacket_exercise/ Modified: stable/10/etc/mtree/BSD.tests.dist stable/10/tests/Makefile stable/10/tests/sys/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/etc/mtree/BSD.tests.dist ============================================================================== --- stable/10/etc/mtree/BSD.tests.dist Thu Feb 13 22:18:27 2014 (r261856) +++ stable/10/etc/mtree/BSD.tests.dist Thu Feb 13 22:19:24 2014 (r261857) @@ -48,6 +48,10 @@ .. .. .. + sys + kern + .. + .. usr.bin atf atf-sh Modified: stable/10/tests/Makefile ============================================================================== --- stable/10/tests/Makefile Thu Feb 13 22:18:27 2014 (r261856) +++ stable/10/tests/Makefile Thu Feb 13 22:19:24 2014 (r261857) @@ -2,7 +2,7 @@ .include -SUBDIR= # still empty +SUBDIR= sys TESTSDIR= ${TESTSBASE} KYUAFILE= yes Modified: stable/10/tests/sys/Makefile ============================================================================== --- head/tests/sys/Makefile Thu Jan 23 17:26:28 2014 (r261081) +++ stable/10/tests/sys/Makefile Thu Feb 13 22:19:24 2014 (r261857) @@ -2,12 +2,11 @@ .include +.PATH: ${.CURDIR}/.. + +TESTS_SUBDIRS+= kern TESTSDIR= ${TESTSBASE}/sys KYUAFILE= yes -CLEANFILES+= Kyuafile -Kyuafile: ${.CURDIR}/../Kyuafile - cp -f ${.CURDIR}/../Kyuafile . - .include