mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 07:14:26 +01:00
1de3fb0425
- `TEST_METADATA.foo` should be `TEST_METADATA.run_tests`: this will unbreak trying to run the tests on a system without python installed in $PATH. - The tests require root because they load aesni(4) and/or cryptodev(4) if not already loaded. MFC after: 2 weeks Sponsored by: Dell EMC Isilon
18 lines
330 B
Makefile
18 lines
330 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/opencrypto
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
PLAIN_TESTS_SH= runtests
|
|
|
|
TEST_METADATA.runtests+= required_programs="python"
|
|
TEST_METADATA.runtests+= required_user="root"
|
|
|
|
PYMODULES= cryptodev.py cryptodevh.py cryptotest.py dpkt.py
|
|
|
|
${PACKAGE}FILES+= ${PYMODULES}
|
|
|
|
.include <bsd.test.mk>
|