mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 20:01:08 +01:00
196f390121
These tests reuse jail names and so cannot run in parallel. MFC after: 1 week
31 lines
463 B
Makefile
31 lines
463 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/net/if_ovpn
|
|
|
|
.if ${MK_PF} != "no"
|
|
ATF_TESTS_SH+= if_ovpn
|
|
# Tests reuse jail names and so cannot run in parallel.
|
|
TEST_METADATA.if_ovpn+= is_exclusive=true
|
|
.endif
|
|
ATF_TESTS_C+= if_ovpn_c
|
|
|
|
LIBADD+= nv
|
|
|
|
TESTS_SUBDIRS+= ccd
|
|
|
|
${PACKAGE}FILES+= \
|
|
ca.crt \
|
|
client.crt \
|
|
client.key \
|
|
client2.crt \
|
|
client2.key \
|
|
dh.pem \
|
|
server.crt \
|
|
server.key \
|
|
user.pass \
|
|
utils.subr
|
|
|
|
.include <bsd.test.mk>
|