1# $FreeBSD$ 2# 3# Generic build infrastructure for test programs. 4# 5# This is the only public file that should be included by Makefiles when 6# tests are to be built. All other *.test.mk files are internal and not 7# to be included directly. 8 9.include <bsd.init.mk> 10 11__<bsd.test.mk>__: 12 13# List of subdirectories containing tests into which to recurse. This has the 14# same semantics as SUBDIR at build-time. However, the directories listed here 15# get registered into the run-time test suite definitions so that the test 16# engines know to recurse into these directories. 17# 18# In other words: list here any directories that contain test programs but use 19# SUBDIR for directories that may contain helper binaries and/or data files. 20TESTS_SUBDIRS?= 21 22# If defined, indicates that the tests built by the Makefile are not part of 23# the FreeBSD Test Suite. The implication of this is that the tests won't be 24# installed under /usr/tests/ and that Kyua won't be able to run them. 25#NOT_FOR_TEST_SUITE= 26 27# List of variables to pass to the tests at run-time via the environment. 28TESTS_ENV?= 29 30# Ordered list of directories to construct the PATH for the tests. 31TESTS_PATH+= ${DESTDIR}/bin ${DESTDIR}/sbin \ 32 ${DESTDIR}/usr/bin ${DESTDIR}/usr/sbin 33TESTS_ENV+= PATH=${TESTS_PATH:tW:C/ +/:/g} 34 35# Ordered list of directories to construct the LD_LIBRARY_PATH for the tests. 36TESTS_LD_LIBRARY_PATH+= ${DESTDIR}/lib ${DESTDIR}/usr/lib 37TESTS_ENV+= LD_LIBRARY_PATH=${TESTS_LD_LIBRARY_PATH:tW:C/ +/:/g} 38 39# List of all tests being built. The various *.test.mk modules extend this 40# variable as needed. 41_TESTS= 42 43# Pull in the definitions of all supported test interfaces. 44.include <atf.test.mk> 45.include <plain.test.mk> 46.include <tap.test.mk> 47 48.if !empty(TESTS_SUBDIRS) 49SUBDIR+= ${TESTS_SUBDIRS} 50.endif 51 52# it is rare for test cases to have man pages 53.if !defined(MAN) 54MAN= 55.endif 56 57# tell progs.mk we might want to install things 58PROG_VARS+= BINDIR 59PROGS_TARGETS+= install 60 61.if !defined(NOT_FOR_TEST_SUITE) 62.include <suite.test.mk> 63.endif 64 65.if !target(realtest) 66realtest: .PHONY 67 @echo "$@ not defined; skipping" 68.endif 69 70test: .PHONY 71.ORDER: beforetest realtest 72test: beforetest realtest 73 74.if target(aftertest) 75.ORDER: realtest aftertest 76test: aftertest 77.endif 78 79.if !empty(SUBDIR) 80.include <bsd.subdir.mk> 81.endif 82 83.if !empty(PROGS) || !empty(PROGS_CXX) || !empty(SCRIPTS) 84.include <bsd.progs.mk> 85.elif !empty(FILES) 86.include <bsd.files.mk> 87.endif 88 89.include <bsd.obj.mk> 90