xref: /freebsd/share/mk/bsd.test.mk (revision a5ff72cb0e51a7675d4e2b5810a2b6dad5b91960)
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# Third-party software (kyua, etc) prefix.
14LOCALBASE?=	/usr/local
15
16# Tests install directory
17TESTSDIR?=	${TESTSBASE}/${RELDIR:H}
18PACKAGE=	tests
19
20# List of subdirectories containing tests into which to recurse.  This has the
21# same semantics as SUBDIR at build-time.  However, the directories listed here
22# get registered into the run-time test suite definitions so that the test
23# engines know to recurse into these directories.
24#
25# In other words: list here any directories that contain test programs but use
26# SUBDIR for directories that may contain helper binaries and/or data files.
27TESTS_SUBDIRS?=
28
29# If defined, indicates that the tests built by the Makefile are not part of
30# the FreeBSD Test Suite.  The implication of this is that the tests won't be
31# installed under /usr/tests/ and that Kyua won't be able to run them.
32#NOT_FOR_TEST_SUITE=
33
34# List of variables to pass to the tests at run-time via the environment.
35TESTS_ENV?=
36
37# Force all tests in a separate distribution file.
38#
39# We want this to be the case even when the distribution name is already
40# overriden.  For example: we want the tests for programs in the 'games'
41# distribution to end up in the 'tests' distribution; the test programs
42# themselves have all the necessary logic to detect that the games are not
43# installed and thus won't cause false negatives.
44DISTRIBUTION:=	tests
45
46# Ordered list of directories to construct the PATH for the tests.
47TESTS_PATH+= ${DESTDIR}/bin ${DESTDIR}/sbin \
48             ${DESTDIR}/usr/bin ${DESTDIR}/usr/sbin
49TESTS_ENV+= PATH=${TESTS_PATH:tW:C/ +/:/g}
50
51# Ordered list of directories to construct the LD_LIBRARY_PATH for the tests.
52TESTS_LD_LIBRARY_PATH+= ${DESTDIR}/lib ${DESTDIR}/usr/lib
53TESTS_ENV+= LD_LIBRARY_PATH=${TESTS_LD_LIBRARY_PATH:tW:C/ +/:/g}
54
55# List of all tests being built.  The various *.test.mk modules extend this
56# variable as needed.
57_TESTS=
58
59# Pull in the definitions of all supported test interfaces.
60.include <atf.test.mk>
61.include <plain.test.mk>
62.include <tap.test.mk>
63
64# kyua automatically descends directories; only run make check on the
65# top-level directory
66.if !make(check)
67.for ts in ${TESTS_SUBDIRS}
68.if empty(SUBDIR:M${ts})
69SUBDIR+= ${ts}
70.endif
71.endfor
72SUBDIR_PARALLEL= t
73.endif
74
75# it is rare for test cases to have man pages
76.if !defined(MAN)
77MAN=
78.endif
79
80.if !defined(NOT_FOR_TEST_SUITE)
81.include <suite.test.mk>
82.endif
83
84.if !target(realcheck)
85realcheck: .PHONY
86	@echo "$@ not defined; skipping"
87.endif
88
89beforecheck realcheck aftercheck check: .PHONY
90.ORDER: beforecheck realcheck aftercheck
91check: beforecheck realcheck aftercheck
92
93.include <bsd.progs.mk>
94