From owner-svn-src-stable-10@FreeBSD.ORG Sun May 31 22:39:49 2015 Return-Path: Delivered-To: svn-src-stable-10@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82195632; Sun, 31 May 2015 22:39:49 +0000 (UTC) (envelope-from ngie@FreeBSD.org) 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 5511E1A2E; Sun, 31 May 2015 22:39:49 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4VMdnff030926; Sun, 31 May 2015 22:39:49 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4VMdmvj030917; Sun, 31 May 2015 22:39:48 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201505312239.t4VMdmvj030917@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 31 May 2015 22:39:48 +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: r283846 - in stable/10: etc etc/mtree etc/tests tests tests/etc 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.20 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: Sun, 31 May 2015 22:39:49 -0000 Author: ngie Date: Sun May 31 22:39:48 2015 New Revision: 283846 URL: https://svnweb.freebsd.org/changeset/base/283846 Log: MFC r277627,r277650,r282059,r283056,r283840,r283845: r277627 (by will): Add routing_test:static_ipv6_loopback_route_for_each_fib. It tests that all FIBs get a static IPv6 loopback route. Submitted by: asomers Sponsored by: Spectra Logic MFSpectraBSD: 1048456 on 2014/03/13 1114523 on 2015/01/23 r277650 (by will): Add tests/etc/rc.d to mtree. Submitted by: stefanf MFC with: 277627 r282059: Move etc/tests/rc.d to etc/rc.d/tests to match the directory layout jmmv@ documented and implemented in other areas of the FreeBSD tree r283056: Move all test integration pieces for etc/ from etc/ to tests/ This is being done to fix breakage with make distribution with read-only source trees as make distribution doesn't use make obj like building tests/ does in all cases Reported by: Wolfgang Zenker Suggested by: jhb r283840: Remove empty tests directory r283845: Append to SUBDIR, not set it Pointyhat to: ngie Added: stable/10/tests/etc/ - copied from r283056, head/tests/etc/ Deleted: stable/10/etc/tests/ Modified: stable/10/etc/Makefile stable/10/etc/mtree/BSD.tests.dist stable/10/tests/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/etc/Makefile ============================================================================== --- stable/10/etc/Makefile Sun May 31 22:24:29 2015 (r283845) +++ stable/10/etc/Makefile Sun May 31 22:39:48 2015 (r283846) @@ -10,10 +10,6 @@ SUBDIR= \ 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 Sun May 31 22:24:29 2015 (r283845) +++ stable/10/etc/mtree/BSD.tests.dist Sun May 31 22:39:48 2015 (r283846) @@ -50,6 +50,8 @@ .. .. etc + rc.d + .. .. games .. Modified: stable/10/tests/Makefile ============================================================================== --- stable/10/tests/Makefile Sun May 31 22:24:29 2015 (r283845) +++ stable/10/tests/Makefile Sun May 31 22:39:48 2015 (r283846) @@ -2,7 +2,8 @@ .include -SUBDIR= sys +SUBDIR+= etc +SUBDIR+= sys TESTSDIR= ${TESTSBASE} KYUAFILE= yes