xref: /freebsd/share/mk/atf.test.mk (revision 5e6befdaca5194a8fb91b48d5f678942f22fa8f1)
1#
2# You must include bsd.test.mk instead of this file from your Makefile.
3#
4# Logic to build and install ATF test programs; i.e. test programs linked
5# against the ATF libraries.
6
7.if !target(__<bsd.test.mk>__)
8.error atf.test.mk cannot be included directly.
9.endif
10
11# List of C, C++ and shell test programs to build.
12#
13# Programs listed here are built using PROGS, PROGS_CXX and SCRIPTS,
14# respectively, from bsd.prog.mk.  However, the build rules are tweaked to
15# require the ATF libraries.
16#
17# Test programs registered in this manner are set to be installed into TESTSDIR
18# (which should be overridden by the Makefile) and are not required to provide a
19# manpage.
20ATF_TESTS_C?=
21ATF_TESTS_CXX?=
22ATF_TESTS_SH?=
23ATF_TESTS_KSH93?=
24ATF_TESTS_PYTEST?=
25
26.if !empty(ATF_TESTS_C)
27PROGS+= ${ATF_TESTS_C}
28_TESTS+= ${ATF_TESTS_C}
29.for _T in ${ATF_TESTS_C}
30BINDIR.${_T}= ${TESTSDIR}
31MAN.${_T}?= # empty
32SRCS.${_T}?= ${_T}.c
33DPADD.${_T}+= ${LIBATF_C}
34.if empty(LDFLAGS:M-static) && empty(LDFLAGS.${_T}:M-static)
35LDADD.${_T}+= ${LDADD_atf_c}
36.else
37LDADD.${_T}+= ${LIBATF_C}
38.endif
39TEST_INTERFACE.${_T}= atf
40.endfor
41.endif
42
43.if !empty(ATF_TESTS_CXX)
44PROGS_CXX+= ${ATF_TESTS_CXX}
45_TESTS+= ${ATF_TESTS_CXX}
46.for _T in ${ATF_TESTS_CXX}
47BINDIR.${_T}= ${TESTSDIR}
48MAN.${_T}?= # empty
49SRCS.${_T}?= ${_T}${CXX_SUFFIX:U.cc}
50DPADD.${_T}+= ${LIBATF_CXX} ${LIBATF_C}
51.if empty(LDFLAGS:M-static) && empty(LDFLAGS.${_T}:M-static)
52LDADD.${_T}+= ${LDADD_atf_cxx} ${LDADD_atf_c}
53.else
54LDADD.${_T}+= ${LIBATF_CXX} ${LIBATF_C}
55.endif
56TEST_INTERFACE.${_T}= atf
57.endfor
58.endif
59
60.if !empty(ATF_TESTS_SH)
61SCRIPTS+= ${ATF_TESTS_SH}
62_TESTS+= ${ATF_TESTS_SH}
63.for _T in ${ATF_TESTS_SH}
64SCRIPTSDIR_${_T}= ${TESTSDIR}
65TEST_INTERFACE.${_T}= atf
66CLEANFILES+= ${_T} ${_T}.tmp
67# TODO(jmmv): It seems to me that this SED and SRC functionality should
68# exist in bsd.prog.mk along the support for SCRIPTS.  Move it there if
69# this proves to be useful within the tests.
70ATF_TESTS_SH_SED_${_T}?= # empty
71ATF_TESTS_SH_SRC_${_T}?= ${_T}.sh
72${_T}: ${ATF_TESTS_SH_SRC_${_T}}
73	echo '#! /usr/libexec/atf-sh' > ${.TARGET}.tmp
74.if empty(ATF_TESTS_SH_SED_${_T})
75	cat ${.ALLSRC:N*Makefile*} >>${.TARGET}.tmp
76.else
77	cat ${.ALLSRC:N*Makefile*} \
78	    | sed ${ATF_TESTS_SH_SED_${_T}} >>${.TARGET}.tmp
79.endif
80	chmod +x ${.TARGET}.tmp
81	mv ${.TARGET}.tmp ${.TARGET}
82.endfor
83.endif
84
85.if !empty(ATF_TESTS_KSH93)
86SCRIPTS+= ${ATF_TESTS_KSH93}
87_TESTS+= ${ATF_TESTS_KSH93}
88.for _T in ${ATF_TESTS_KSH93}
89SCRIPTSDIR_${_T}= ${TESTSDIR}
90TEST_INTERFACE.${_T}= atf
91TEST_METADATA.${_T}+= required_programs="ksh93"
92CLEANFILES+= ${_T} ${_T}.tmp
93# TODO(jmmv): It seems to me that this SED and SRC functionality should
94# exist in bsd.prog.mk along the support for SCRIPTS.  Move it there if
95# this proves to be useful within the tests.
96ATF_TESTS_KSH93_SED_${_T}?= # empty
97ATF_TESTS_KSH93_SRC_${_T}?= ${_T}.sh
98${_T}: ${ATF_TESTS_KSH93_SRC_${_T}}
99	echo '#! /usr/libexec/atf-sh -s/usr/local/bin/ksh93' > ${.TARGET}.tmp
100.if empty(ATF_TESTS_KSH93_SED_${_T})
101	cat ${.ALLSRC:N*Makefile*} >>${.TARGET}.tmp
102.else
103	cat ${.ALLSRC:N*Makefile*} \
104	    | sed ${ATF_TESTS_KSH93_SED_${_T}} >>${.TARGET}.tmp
105.endif
106	chmod +x ${.TARGET}.tmp
107	mv ${.TARGET}.tmp ${.TARGET}
108.endfor
109.endif
110
111.if !empty(ATF_TESTS_PYTEST)
112# bsd.prog.mk SCRIPTS interface removes file extension unless
113# SCRIPTSNAME is set, which is not possible to do here.
114# Workaround this by appending another extension (.xtmp) to the
115# file name. Use separate loop to avoid dealing with explicitly
116# stating expansion for each and every variable.
117#
118# ATF_TESTS_PYTEST -> contains list of files as is (test_something.py ..)
119# _ATF_TESTS_PYTEST -> (test_something.py.xtmp ..)
120#
121# Former array is iterated to construct Kyuafile, where original file
122#  names need to be written.
123# Latter array is iterated to enable bsd.prog.mk scripts framework -
124#  namely, installing scripts without .xtmp prefix. Note: this allows to
125#  not bother about the fact that make target needs to be different from
126#  the source file.
127_TESTS+= ${ATF_TESTS_PYTEST}
128_ATF_TESTS_PYTEST=
129.for _T in ${ATF_TESTS_PYTEST}
130_ATF_TESTS_PYTEST += ${_T}.xtmp
131TEST_INTERFACE.${_T}= atf
132TEST_METADATA.${_T}+= required_programs="pytest"
133.endfor
134
135SCRIPTS+= ${_ATF_TESTS_PYTEST}
136.for _T in ${_ATF_TESTS_PYTEST}
137SCRIPTSDIR_${_T}= ${TESTSDIR}
138CLEANFILES+= ${_T} ${_T}.tmp
139# TODO(jmmv): It seems to me that this SED and SRC functionality should
140# exist in bsd.prog.mk along the support for SCRIPTS.  Move it there if
141# this proves to be useful within the tests.
142ATF_TESTS_PYTEST_SED_${_T}?= # empty
143ATF_TESTS_PYTEST_SRC_${_T}?= ${.CURDIR}/${_T:S,.xtmp$,,}
144${_T}: ${_T:S/.xtmp//}
145	echo "#! /usr/libexec/atf_pytest_wrapper -P ${TESTSBASE}" > ${.TARGET}.tmp
146.if empty(ATF_TESTS_PYTEST_SED_${_T})
147	cat ${ATF_TESTS_PYTEST_SRC_${_T}}  >>${.TARGET}.tmp
148.else
149	cat ${ATF_TESTS_PYTEST_SRC_${_T}} \
150	    | sed ${ATF_TESTS_PYTEST_SED_${_T}} >>${.TARGET}.tmp
151.endif
152	chmod +x ${.TARGET}.tmp
153	mv ${.TARGET}.tmp ${.TARGET}
154.endfor
155.endif
156