mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 19:31:08 +01:00
e9ac41698b
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
539 B
Makefile
22 lines
539 B
Makefile
PACKAGE= tests
|
|
WARNS?= 1
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/net/routing
|
|
|
|
ATF_TESTS_C += test_rtsock_l3
|
|
ATF_TESTS_C += test_rtsock_lladdr
|
|
ATF_TESTS_C += test_rtsock_ops
|
|
ATF_TESTS_PYTEST += test_routing_l3.py
|
|
ATF_TESTS_PYTEST += test_rtsock_multipath.py
|
|
|
|
${PACKAGE}FILES+= generic_cleanup.sh
|
|
${PACKAGE}FILESMODE_generic_cleanup.sh=0555
|
|
|
|
# Most of the tests operates on a common IPv4/IPv6 prefix,
|
|
# so running them in parallel will lead to weird results.
|
|
TEST_METADATA+= is_exclusive=true
|
|
|
|
CFLAGS+= -I${.CURDIR:H:H:H}
|
|
|
|
.include <bsd.test.mk>
|