369ee0905e
yet, but the default Python version in ports has been switched to 3. Sponsored by: The FreeBSD Foundation
27 lines
569 B
Makefile
27 lines
569 B
Makefile
# $FreeBSD$
|
|
|
|
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
|
|
|
|
PLAIN_TESTS_SH= runtests
|
|
|
|
TEST_METADATA.runtests+= required_programs="python2"
|
|
TEST_METADATA.runtests+= required_user="root"
|
|
|
|
PYMODULES= cryptodev.py cryptodevh.py cryptotest.py dpkt.py
|
|
|
|
${PACKAGE}FILES+= ${PYMODULES}
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|