mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
This provides a regression test for commit abca3ae7734f. Add it to the existing v4-mapped address test file, and rename accordingly. Reviewed by: tuexen, karels, rrs MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D39216 (cherry picked from commit ae5c3dfd3e75bb287984947359d4f958aea505ec)
42 lines
777 B
Makefile
42 lines
777 B
Makefile
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/netinet
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
TESTS_SUBDIRS+= libalias
|
|
|
|
ATF_TESTS_C= ip_reass_test \
|
|
ip6_v4mapped_test \
|
|
so_reuseport_lb_test \
|
|
socket_afinet \
|
|
tcp_connect_port_test \
|
|
tcp_md5_getsockopt
|
|
|
|
ATF_TESTS_SH= arp \
|
|
carp \
|
|
divert \
|
|
fibs \
|
|
fibs_test \
|
|
forward \
|
|
lpm \
|
|
output \
|
|
redirect
|
|
|
|
ATF_TESTS_PYTEST+= carp.py
|
|
|
|
TEST_METADATA.divert+= required_programs="python"
|
|
TEST_METADATA.forward+= required_programs="python"
|
|
TEST_METADATA.output+= required_programs="python"
|
|
TEST_METADATA.redirect+= required_programs="python"
|
|
TEST_METADATA.tcp6_v4mapped_bind_test+= is_exclusive="true"
|
|
|
|
PROGS= udp_dontroute tcp_user_cookie
|
|
|
|
${PACKAGE}FILES+= redirect.py
|
|
|
|
${PACKAGE}FILESMODE_redirect.py=0555
|
|
|
|
MAN=
|
|
|
|
.include <bsd.test.mk>
|