mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -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
22 lines
536 B
Makefile
22 lines
536 B
Makefile
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/opencrypto
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
CFLAGS+= -I${SRCTOP}/tests
|
|
CFLAGS.blake2_test.c += -I${SRCTOP}/sys/opencrypto
|
|
CFLAGS.blake2_test.c += -I${SRCTOP}/sys/contrib/libb2
|
|
CFLAGS.poly1305_test.c += -I${SRCTOP}/sys/opencrypto
|
|
|
|
ATF_TESTS_C+= blake2_test poly1305_test
|
|
|
|
TAP_TESTS_SH+= runtests
|
|
|
|
TEST_METADATA.runtests+= required_programs="python3"
|
|
TEST_METADATA.runtests+= required_user="root"
|
|
|
|
PYMODULES= cryptodev.py cryptodevh.py cryptotest.py
|
|
|
|
${PACKAGE}FILES+= ${PYMODULES}
|
|
|
|
.include <bsd.test.mk>
|