194d562872
Add a wrapping script to use ATF to run tests written with Googletest one by one. This helps locating and tracking the failing case in CI easier. This is a temporarily solution while Googletest support in Kyua is developing. We will revert this once Kyua+Googletest integration is ready. Reviewed by: emaste Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D25896
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
# You must include bsd.test.mk instead of this file from your Makefile.
|
|
#
|
|
# Logic to build and install GoogleTest based test programs.
|
|
#
|
|
# GoogleTest is a C++ test framework, thus, it does not describe/articulate how
|
|
# to write tests in other languages, e.g., C or shell, unlike the ATF, plain,
|
|
# and TAP raw test interfaces.
|
|
#
|
|
# For now this is a thin wrapper around the `plain` test interface, but in the
|
|
# future this will rely on a newer version of kyua which will integrate in
|
|
# GoogleTest support.
|
|
|
|
.if !target(__<bsd.test.mk>__)
|
|
.error googletest.test.mk cannot be included directly.
|
|
.endif
|
|
|
|
# List of GoogleTest test programs to build.
|
|
#
|
|
# Programs listed here are built according to the semantics of bsd.progs.mk for
|
|
# PROGS_CXX.
|
|
#
|
|
# Test programs registered in this manner are set to be installed into TESTSDIR
|
|
# (which should be overridden by the Makefile) and are not required to provide a
|
|
# manpage.
|
|
GTESTS?=
|
|
|
|
.if !empty(GTESTS)
|
|
.include <googletest.test.inc.mk>
|
|
|
|
PROGS_CXX+= ${GTESTS}
|
|
.for _T in ${GTESTS}
|
|
BINDIR.${_T}= ${TESTSDIR}
|
|
CXXFLAGS.${_T}+= ${GTESTS_CXXFLAGS}
|
|
MAN.${_T}?= # empty
|
|
SRCS.${_T}?= ${_T}.cc
|
|
.if !empty(GTESTS_WRAPPER_SH.${_T})
|
|
# A stopgap/workaround to let kyua execute test case one by one
|
|
ATF_TESTS_SH+= ${GTESTS_WRAPPER_SH.${_T}}
|
|
.else
|
|
_TESTS+= ${_T}
|
|
TEST_INTERFACE.${_T}= plain
|
|
.endif
|
|
|
|
.endfor
|
|
.endif
|