From owner-svn-src-projects@freebsd.org Wed Aug 2 08:14:08 2017 Return-Path: Delivered-To: svn-src-projects@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 BA97FDC95E1 for ; Wed, 2 Aug 2017 08:14:08 +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 95E427ED36; Wed, 2 Aug 2017 08:14:08 +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 v728E7GR010376; Wed, 2 Aug 2017 08:14:07 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v728E6Lv010368; Wed, 2 Aug 2017 08:14:06 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201708020814.v728E6Lv010368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Wed, 2 Aug 2017 08:14:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r321911 - in projects/make-check-sandbox: bin/chmod bin/pwait bin/sh lib/libcam lib/libkvm lib/libsbuf usr.bin/du usr.bin/stat X-SVN-Group: projects X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: in projects/make-check-sandbox: bin/chmod bin/pwait bin/sh lib/libcam lib/libkvm lib/libsbuf usr.bin/du usr.bin/stat X-SVN-Commit-Revision: 321911 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2017 08:14:08 -0000 Author: ngie Date: Wed Aug 2 08:14:06 2017 New Revision: 321911 URL: https://svnweb.freebsd.org/changeset/base/321911 Log: Add HAS_TESTS to all Makefiles that use the SUBDIR.${MK_TESTS}+= tests idiom Modified: projects/make-check-sandbox/bin/chmod/Makefile projects/make-check-sandbox/bin/pwait/Makefile projects/make-check-sandbox/bin/sh/Makefile projects/make-check-sandbox/lib/libcam/Makefile projects/make-check-sandbox/lib/libkvm/Makefile projects/make-check-sandbox/lib/libsbuf/Makefile projects/make-check-sandbox/usr.bin/du/Makefile projects/make-check-sandbox/usr.bin/stat/Makefile Modified: projects/make-check-sandbox/bin/chmod/Makefile ============================================================================== --- projects/make-check-sandbox/bin/chmod/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/bin/chmod/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -6,6 +6,7 @@ PACKAGE=runtime PROG= chmod +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include Modified: projects/make-check-sandbox/bin/pwait/Makefile ============================================================================== --- projects/make-check-sandbox/bin/pwait/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/bin/pwait/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -5,6 +5,7 @@ PACKAGE=runtime PROG= pwait +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include Modified: projects/make-check-sandbox/bin/sh/Makefile ============================================================================== --- projects/make-check-sandbox/bin/sh/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/bin/sh/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -64,8 +64,7 @@ syntax.c syntax.h: mksyntax token.h: mktokens sh ${.CURDIR}/mktokens -.if ${MK_TESTS} != "no" -SUBDIR+= tests -.endif +HAS_TESTS= +SUBDIR.${MK_TESTS}+= tests .include Modified: projects/make-check-sandbox/lib/libcam/Makefile ============================================================================== --- projects/make-check-sandbox/lib/libcam/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/lib/libcam/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -47,6 +47,7 @@ SHLIB_MAJOR= 7 .include +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include Modified: projects/make-check-sandbox/lib/libkvm/Makefile ============================================================================== --- projects/make-check-sandbox/lib/libkvm/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/lib/libkvm/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -38,6 +38,7 @@ MLINKS+=kvm_read.3 kvm_read2.3 kvm_read.3 kvm_write.3 .include +HAS_TESTS= SUBDIR.${MK_TESTS}= tests .include Modified: projects/make-check-sandbox/lib/libsbuf/Makefile ============================================================================== --- projects/make-check-sandbox/lib/libsbuf/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/lib/libsbuf/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -14,6 +14,7 @@ VERSION_DEF= ${.CURDIR}/Version.def .PATH: ${SRCTOP}/sys/kern +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include Modified: projects/make-check-sandbox/usr.bin/du/Makefile ============================================================================== --- projects/make-check-sandbox/usr.bin/du/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/usr.bin/du/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -6,6 +6,7 @@ PROG= du LIBADD= util +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include Modified: projects/make-check-sandbox/usr.bin/stat/Makefile ============================================================================== --- projects/make-check-sandbox/usr.bin/stat/Makefile Wed Aug 2 08:07:13 2017 (r321910) +++ projects/make-check-sandbox/usr.bin/stat/Makefile Wed Aug 2 08:14:06 2017 (r321911) @@ -7,6 +7,7 @@ PROG= stat LINKS= ${BINDIR}/stat ${BINDIR}/readlink MLINKS= stat.1 readlink.1 +HAS_TESTS= SUBDIR.${MK_TESTS}+= tests .include