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