mirror of
https://github.com/opnsense/src.git
synced 2026-06-20 05:59:18 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
23 lines
447 B
Makefile
23 lines
447 B
Makefile
.include <bsd.init.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/atf/test-programs
|
|
|
|
KYUAFILE= yes
|
|
|
|
ATF= ${SRCTOP}/contrib/atf
|
|
.PATH: ${ATF}/test-programs
|
|
|
|
CFLAGS+= -I${ATF}
|
|
|
|
ATF_TESTS_C= c_helpers
|
|
|
|
ATF_TESTS_CXX= cpp_helpers
|
|
SRCS.cpp_helpers= cpp_helpers.cpp
|
|
|
|
ATF_TESTS_SH= sh_helpers
|
|
.for _T in config_test expect_test meta_data_test result_test srcdir_test
|
|
ATF_TESTS_SH+= ${_T}
|
|
ATF_TESTS_SH_SRC_${_T}= common.sh ${_T}.sh
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|