Date: Tue, 9 May 2017 04:59:05 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r318008 - head/sys/modules Message-ID: <201705090459.v494x5dl045075@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Tue May 9 04:59:05 2017 New Revision: 318008 URL: https://svnweb.freebsd.org/changeset/base/318008 Log: Only compile tests/ if MK_TESTS != no or ALL_MODULES is defined MFC after: 3 weeks Sponsored by: Dell EMC Isilon Modified: head/sys/modules/Makefile Modified: head/sys/modules/Makefile ============================================================================== --- head/sys/modules/Makefile Tue May 9 04:56:14 2017 (r318007) +++ head/sys/modules/Makefile Tue May 9 04:59:05 2017 (r318008) @@ -356,8 +356,6 @@ SUBDIR= \ sysvipc \ tcp \ ${_ti} \ - tests/framework \ - tests/callout_test \ tl \ tmpfs \ ${_toecore} \ @@ -516,6 +514,10 @@ _rtwnfw= rtwnfw _cxgbe= cxgbe .endif +.if ${MK_TESTS} != "no" || defined(ALL_MODULES) +SUBDIR+= tests +.endif + .if ${MK_ZFS} != "no" || defined(ALL_MODULES) SUBDIR+= zfs .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705090459.v494x5dl045075>