xref: /freebsd/share/mk/googletest.test.mk (revision e17f5b1d)
1# $FreeBSD$
2#
3# You must include bsd.test.mk instead of this file from your Makefile.
4#
5# Logic to build and install GoogleTest based test programs.
6#
7# GoogleTest is a C++ test framework, thus, it does not describe/articulate how
8# to write tests in other languages, e.g., C or shell, unlike the ATF, plain,
9# and TAP raw test interfaces.
10#
11# For now this is a thin wrapper around the `plain` test interface, but in the
12# future this will rely on a newer version of kyua which will integrate in
13# GoogleTest support.
14
15.if !target(__<bsd.test.mk>__)
16.error googletest.test.mk cannot be included directly.
17.endif
18
19# List of GoogleTest test programs to build.
20#
21# Programs listed here are built according to the semantics of bsd.progs.mk for
22# PROGS_CXX.
23#
24# Test programs registered in this manner are set to be installed into TESTSDIR
25# (which should be overridden by the Makefile) and are not required to provide a
26# manpage.
27GTESTS?=
28
29.if !empty(GTESTS)
30.include <googletest.test.inc.mk>
31
32PROGS_CXX+= ${GTESTS}
33_TESTS+= ${GTESTS}
34.for _T in ${GTESTS}
35BINDIR.${_T}= ${TESTSDIR}
36CXXFLAGS.${_T}+= ${GTESTS_CXXFLAGS}
37MAN.${_T}?= # empty
38SRCS.${_T}?= ${_T}.cc
39TEST_INTERFACE.${_T}= plain
40.endfor
41.endif
42