2013-10-25 05:31:26 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
2014-03-14 08:56:19 +00:00
|
|
|
# You must include bsd.test.mk instead of this file from your Makefile.
|
|
|
|
#
|
2013-10-25 05:31:26 +00:00
|
|
|
# Logic to build and install plain test programs. A plain test programs it not
|
|
|
|
# supposed to use any specific testing framework: all it does is run some code
|
|
|
|
# and report the test's pass or fail status via a 0 or 1 exit code.
|
|
|
|
|
2014-03-14 08:56:19 +00:00
|
|
|
.if !target(__<bsd.test.mk>__)
|
|
|
|
.error plain.test.mk cannot be included directly.
|
|
|
|
.endif
|
2013-10-25 05:31:26 +00:00
|
|
|
|
|
|
|
# List of C, C++ and shell test programs to build.
|
|
|
|
#
|
|
|
|
# Programs listed here are built according to the semantics of bsd.prog.mk for
|
|
|
|
# PROGS, PROGS_CXX and SCRIPTS, respectively.
|
|
|
|
#
|
|
|
|
# Test programs registered in this manner are set to be installed into TESTSDIR
|
2018-07-27 10:44:38 +00:00
|
|
|
# (which should be overridden by the Makefile) and are not required to provide a
|
2013-10-25 05:31:26 +00:00
|
|
|
# manpage.
|
|
|
|
PLAIN_TESTS_C?=
|
|
|
|
PLAIN_TESTS_CXX?=
|
|
|
|
PLAIN_TESTS_SH?=
|
|
|
|
|
|
|
|
.if !empty(PLAIN_TESTS_C)
|
|
|
|
PROGS+= ${PLAIN_TESTS_C}
|
|
|
|
_TESTS+= ${PLAIN_TESTS_C}
|
|
|
|
.for _T in ${PLAIN_TESTS_C}
|
|
|
|
BINDIR.${_T}= ${TESTSDIR}
|
|
|
|
MAN.${_T}?= # empty
|
2013-11-18 12:47:35 +00:00
|
|
|
SRCS.${_T}?= ${_T}.c
|
2013-10-25 05:31:26 +00:00
|
|
|
TEST_INTERFACE.${_T}= plain
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !empty(PLAIN_TESTS_CXX)
|
|
|
|
PROGS_CXX+= ${PLAIN_TESTS_CXX}
|
|
|
|
_TESTS+= ${PLAIN_TESTS_CXX}
|
|
|
|
.for _T in ${PLAIN_TESTS_CXX}
|
|
|
|
BINDIR.${_T}= ${TESTSDIR}
|
|
|
|
MAN.${_T}?= # empty
|
2013-11-18 12:47:35 +00:00
|
|
|
SRCS.${_T}?= ${_T}.cc
|
2013-10-25 05:31:26 +00:00
|
|
|
TEST_INTERFACE.${_T}= plain
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !empty(PLAIN_TESTS_SH)
|
|
|
|
SCRIPTS+= ${PLAIN_TESTS_SH}
|
|
|
|
_TESTS+= ${PLAIN_TESTS_SH}
|
|
|
|
.for _T in ${PLAIN_TESTS_SH}
|
|
|
|
SCRIPTSDIR_${_T}= ${TESTSDIR}
|
|
|
|
TEST_INTERFACE.${_T}= plain
|
2013-11-25 13:30:06 +00:00
|
|
|
CLEANFILES+= ${_T} ${_T}.tmp
|
|
|
|
# TODO(jmmv): It seems to me that this SED and SRC functionality should
|
|
|
|
# exist in bsd.prog.mk along the support for SCRIPTS. Move it there if
|
|
|
|
# this proves to be useful within the tests.
|
|
|
|
PLAIN_TESTS_SH_SED_${_T}?= # empty
|
|
|
|
PLAIN_TESTS_SH_SRC_${_T}?= ${_T}.sh
|
|
|
|
${_T}: ${PLAIN_TESTS_SH_SRC_${_T}}
|
2014-11-04 01:57:31 +00:00
|
|
|
.if empty(PLAIN_TESTS_SH_SED_${_T})
|
|
|
|
cat ${.ALLSRC:N*Makefile*} >${.TARGET}.tmp
|
|
|
|
.else
|
2014-07-09 00:55:50 +00:00
|
|
|
cat ${.ALLSRC:N*Makefile*} \
|
|
|
|
| sed ${PLAIN_TESTS_SH_SED_${_T}} >${.TARGET}.tmp
|
2014-11-04 01:57:31 +00:00
|
|
|
.endif
|
2013-11-25 13:30:06 +00:00
|
|
|
chmod +x ${.TARGET}.tmp
|
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
2013-10-25 05:31:26 +00:00
|
|
|
.endfor
|
|
|
|
.endif
|