From owner-svn-src-all@FreeBSD.ORG Mon Apr 28 04:20:18 2014 Return-Path: Delivered-To: svn-src-all@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 77199725; Mon, 28 Apr 2014 04:20:18 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 608E91527; Mon, 28 Apr 2014 04:20:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3S4KIBd022478; Mon, 28 Apr 2014 04:20:18 GMT (envelope-from jmmv@svn.freebsd.org) Received: (from jmmv@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3S4KE7n022458; Mon, 28 Apr 2014 04:20:14 GMT (envelope-from jmmv@svn.freebsd.org) Message-Id: <201404280420.s3S4KE7n022458@svn.freebsd.org> From: Julio Merino Date: Mon, 28 Apr 2014 04:20:14 +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: r265037 - in stable/10: cddl cddl/lib cddl/lib/tests cddl/sbin cddl/sbin/tests cddl/tests cddl/usr.bin cddl/usr.bin/tests cddl/usr.sbin cddl/usr.sbin/tests etc etc/mtree etc/tests games... 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.17 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: Mon, 28 Apr 2014 04:20:18 -0000 Author: jmmv Date: Mon Apr 28 04:20:14 2014 New Revision: 265037 URL: http://svnweb.freebsd.org/changeset/base/265037 Log: MFC r264741: Add placeholder Kyuafiles for various top-level hierarchies. This is "make tinderbox" clean. Added: stable/10/cddl/lib/tests/ - copied from r264741, head/cddl/lib/tests/ stable/10/cddl/sbin/tests/ - copied from r264741, head/cddl/sbin/tests/ stable/10/cddl/tests/ - copied from r264741, head/cddl/tests/ stable/10/cddl/usr.bin/tests/ - copied from r264741, head/cddl/usr.bin/tests/ stable/10/cddl/usr.sbin/tests/ - copied from r264741, head/cddl/usr.sbin/tests/ stable/10/etc/tests/ - copied from r264741, head/etc/tests/ stable/10/games/tests/ - copied from r264741, head/games/tests/ stable/10/gnu/lib/tests/ - copied from r264741, head/gnu/lib/tests/ stable/10/gnu/tests/ - copied from r264741, head/gnu/tests/ stable/10/gnu/usr.bin/tests/ - copied from r264741, head/gnu/usr.bin/tests/ stable/10/secure/lib/tests/ - copied from r264741, head/secure/lib/tests/ stable/10/secure/libexec/tests/ - copied from r264741, head/secure/libexec/tests/ stable/10/secure/tests/ - copied from r264741, head/secure/tests/ stable/10/secure/usr.bin/tests/ - copied from r264741, head/secure/usr.bin/tests/ stable/10/secure/usr.sbin/tests/ - copied from r264741, head/secure/usr.sbin/tests/ Modified: stable/10/cddl/Makefile stable/10/cddl/lib/Makefile stable/10/cddl/sbin/Makefile stable/10/cddl/usr.bin/Makefile stable/10/cddl/usr.sbin/Makefile stable/10/etc/Makefile stable/10/etc/mtree/BSD.tests.dist stable/10/games/Makefile stable/10/gnu/Makefile stable/10/gnu/lib/Makefile stable/10/gnu/usr.bin/Makefile stable/10/secure/Makefile stable/10/secure/lib/Makefile stable/10/secure/libexec/Makefile stable/10/secure/usr.bin/Makefile stable/10/secure/usr.sbin/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/cddl/Makefile ============================================================================== --- stable/10/cddl/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/cddl/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -1,5 +1,11 @@ # $FreeBSD$ +.include + SUBDIR= lib sbin usr.bin usr.sbin +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + .include Modified: stable/10/cddl/lib/Makefile ============================================================================== --- stable/10/cddl/lib/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/cddl/lib/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -11,7 +11,12 @@ SUBDIR= ${_drti} \ libuutil \ ${_libzfs_core} \ ${_libzfs} \ - ${_libzpool} + ${_libzpool} \ + ${_tests} + +.if ${MK_TESTS} != "no" +_tests= tests +.endif .if ${MK_ZFS} != "no" _libzfs_core= libzfs_core Modified: stable/10/cddl/sbin/Makefile ============================================================================== --- stable/10/cddl/sbin/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/cddl/sbin/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -2,7 +2,11 @@ .include -SUBDIR= ${_zfs} ${_zpool} +SUBDIR= ${_tests} ${_zfs} ${_zpool} + +.if ${MK_TESTS} != "no" +_tests= tests +.endif .if ${MK_ZFS} != "no" _zfs= zfs Modified: stable/10/cddl/usr.bin/Makefile ============================================================================== --- stable/10/cddl/usr.bin/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/cddl/usr.bin/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -7,11 +7,16 @@ SUBDIR= \ ctfdump \ ctfmerge \ sgsmsg \ + ${_tests} \ ${_zinject} \ ${_zlook} \ ${_zstreamdump} \ ${_ztest} +.if ${MK_TESTS} != "no" +_tests= tests +.endif + .if ${MK_ZFS} != "no" _zinject= zinject #_zlook= zlook Modified: stable/10/cddl/usr.sbin/Makefile ============================================================================== --- stable/10/cddl/usr.sbin/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/cddl/usr.sbin/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -5,9 +5,14 @@ SUBDIR= ${_dtrace} \ ${_dtruss} \ ${_lockstat} \ + ${_tests} \ ${_zdb} \ ${_zhack} +.if ${MK_TESTS} != "no" +_tests= tests +.endif + .if ${MK_ZFS} != "no" .if ${MK_LIBTHR} != "no" _zdb= zdb Modified: stable/10/etc/Makefile ============================================================================== --- stable/10/etc/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/etc/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -7,6 +7,10 @@ SUBDIR= sendmail .endif +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + BIN1= crontab \ devd.conf \ devfs.conf \ Modified: stable/10/etc/mtree/BSD.tests.dist ============================================================================== --- stable/10/etc/mtree/BSD.tests.dist Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/etc/mtree/BSD.tests.dist Mon Apr 28 04:20:14 2014 (r265037) @@ -50,6 +50,26 @@ test .. .. + cddl + lib + .. + sbin + .. + usr.bin + .. + usr.sbin + .. + .. + etc + .. + games + .. + gnu + lib + .. + usr.bin + .. + .. lib atf libatf-c @@ -80,6 +100,16 @@ mdconfig .. .. + secure + lib + .. + libexec + .. + usr.bin + .. + usr.sbin + .. + .. share examples tests Modified: stable/10/games/Makefile ============================================================================== --- stable/10/games/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/games/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -1,6 +1,7 @@ -# @(#)Makefile 8.2 (Berkeley) 3/31/94 # $FreeBSD$ +.include + SUBDIR= \ bcd \ caesar \ @@ -12,6 +13,11 @@ SUBDIR= \ pom \ ppt \ primes \ - random + random \ + ${_tests} + +.if ${MK_TESTS} != "no" +_tests= tests +.endif .include Modified: stable/10/gnu/Makefile ============================================================================== --- stable/10/gnu/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/gnu/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -1,6 +1,12 @@ # @(#)Makefile 5.33.1.1 (Berkeley) 5/6/91 # $FreeBSD$ -SUBDIR= lib usr.bin +.include + +SUBDIR= lib ${_tests} usr.bin + +.if ${MK_TESTS} != "no" +_tests= tests +.endif .include Modified: stable/10/gnu/lib/Makefile ============================================================================== --- stable/10/gnu/lib/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/gnu/lib/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -8,6 +8,10 @@ SUBDIR= csu libgcc libgcov libdialog lib SUBDIR+= libssp .endif +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + # libsupc++ uses libstdc++ headers, although 'make includes' should # have taken care of that already. .if ${MK_GNUCXX} != "no" Modified: stable/10/gnu/usr.bin/Makefile ============================================================================== --- stable/10/gnu/usr.bin/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/gnu/usr.bin/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -15,6 +15,7 @@ SUBDIR= ${_binutils} \ ${_rcs} \ sdiff \ send-pr \ + ${_tests} \ ${_texinfo} .if ${MK_CXX} != "no" @@ -36,6 +37,10 @@ _texinfo= texinfo _rcs= rcs .endif +.if ${MK_TESTS} != "no" +_tests= tests +.endif + .if ${MK_BINUTILS} != "no" _binutils= binutils .endif Modified: stable/10/secure/Makefile ============================================================================== --- stable/10/secure/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/secure/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -2,7 +2,11 @@ .include -SUBDIR= lib libexec usr.bin usr.sbin +SUBDIR= lib libexec ${_tests} usr.bin usr.sbin + +.if ${MK_TESTS} != "no" +_tests= tests +.endif # These are the programs which depend on crypto, but not Kerberos. SPROGS= lib/libfetch lib/libpam lib/libradius lib/libtelnet \ Modified: stable/10/secure/lib/Makefile ============================================================================== --- stable/10/secure/lib/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/secure/lib/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -10,4 +10,8 @@ SUBDIR+=libssh .endif .endif +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + .include Modified: stable/10/secure/libexec/Makefile ============================================================================== --- stable/10/secure/libexec/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/secure/libexec/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -7,4 +7,8 @@ SUBDIR= SUBDIR+=sftp-server ssh-keysign ssh-pkcs11-helper .endif +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + .include Modified: stable/10/secure/usr.bin/Makefile ============================================================================== --- stable/10/secure/usr.bin/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/secure/usr.bin/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -10,4 +10,8 @@ SUBDIR+=scp sftp ssh ssh-add ssh-agent s .endif .endif +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + .include Modified: stable/10/secure/usr.sbin/Makefile ============================================================================== --- stable/10/secure/usr.sbin/Makefile Mon Apr 28 02:35:28 2014 (r265036) +++ stable/10/secure/usr.sbin/Makefile Mon Apr 28 04:20:14 2014 (r265037) @@ -7,4 +7,8 @@ SUBDIR= SUBDIR+=sshd .endif +.if ${MK_TESTS} != "no" +SUBDIR+=tests +.endif + .include