mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
Use MK_CHECK_USE_SANDBOX in tests/..., to deal with the fact that
tests/... is a special snowflake directory and using HAS_TESTS would result in a nasty layering violation between bsd.tests.mk and bsd.prog.mk. Add reachover Makefile.inc's which get the default value from Makefile.inc0 (inspired by gnu/usr.bin/binutils/Makefile.inc0).
This commit is contained in:
parent
eb51cdee61
commit
47606b869e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/projects/make-check-sandbox/; revision=321960
@ -17,4 +17,5 @@ afterinstall: install-tests-local
|
||||
install-tests-local: .PHONY
|
||||
${INSTALL_SYMLINK} ../local/tests ${DESTDIR}${TESTSDIR}/local
|
||||
|
||||
.include "Makefile.inc0"
|
||||
.include <bsd.test.mk>
|
||||
|
9
tests/Makefile.inc0
Normal file
9
tests/Makefile.inc0
Normal file
@ -0,0 +1,9 @@
|
||||
# $FreeBSD$
|
||||
|
||||
# tests/... doesn't conform to bsd.lib.mk and bsd.prog.mk, so specify a sane
|
||||
# default for MK_CHECK_USE_SANDBOX. src.opts.mk will override the value if the
|
||||
# user sets it to no.
|
||||
MK_CHECK_USE_SANDBOX= yes
|
||||
|
||||
.include <src.opts.mk>
|
||||
|
3
tests/etc/Makefile.inc
Normal file
3
tests/etc/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.include "${SRCTOP}/tests/Makefile.inc0"
|
@ -1,3 +1,5 @@
|
||||
# $FreeBSD$
|
||||
|
||||
WARNS?= 6
|
||||
|
||||
.include "${SRCTOP}/tests/Makefile.inc0"
|
||||
|
3
tests/sys/geom/class/Makefile.inc
Normal file
3
tests/sys/geom/class/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.include "${SRCTOP}/tests/Makefile.inc0"
|
3
tests/sys/pjdfstest/Makefile.inc
Normal file
3
tests/sys/pjdfstest/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.include "${SRCTOP}/tests/Makefile.inc0"
|
3
tests/sys/pjdfstest/tests/Makefile.inc
Normal file
3
tests/sys/pjdfstest/tests/Makefile.inc
Normal file
@ -0,0 +1,3 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.include "../Makefile.inc"
|
Loading…
Reference in New Issue
Block a user