xref: /freebsd-14.2/tests/sys/netinet6/Makefile (revision 9e6ff435)
1
2PACKAGE=	tests
3
4TESTSDIR=	${TESTSBASE}/sys/netinet6
5FILESDIR=	${TESTSDIR}
6
7ATF_TESTS_PYTEST=	test_ip6_output.py
8ATF_TESTS_SH=		exthdr \
9			mld \
10			scapyi386 \
11			redirect \
12			divert \
13			forward6 \
14			output6 \
15			lpm6 \
16			fibs6 \
17			ndp \
18			proxy_ndp
19
20TEST_METADATA.divert+=	execenv="jail"		\
21			execenv_jail_params="vnet allow.raw_sockets"
22TEST_METADATA.exthdr+=	execenv="jail"		\
23			execenv_jail_params="vnet allow.raw_sockets"
24TEST_METADATA.forward6+= execenv="jail"		\
25			execenv_jail_params="vnet allow.raw_sockets"
26TEST_METADATA.ndp+=	execenv="jail"		\
27			execenv_jail_params="vnet allow.raw_sockets"
28TEST_METADATA.output6+=	execenv="jail"		\
29			execenv_jail_params="vnet allow.raw_sockets" \
30			required_programs="python"
31TEST_METADATA.proxy_ndp+= execenv="jail"		\
32			execenv_jail_params="vnet allow.raw_sockets"
33TEST_METADATA.redirect+= execenv="jail"		\
34			execenv_jail_params="vnet allow.raw_sockets"
35TEST_METADATA.scapyi386+= execenv="jail"		\
36			execenv_jail_params="vnet allow.raw_sockets"
37
38${PACKAGE}FILES+=	exthdr.py \
39			mld.py \
40			scapyi386.py \
41			ra.py \
42			redirect.py
43
44${PACKAGE}FILESMODE_exthdr.py=	0555
45${PACKAGE}FILESMODE_mld.py=	0555
46${PACKAGE}FILESMODE_scapyi386.py=0555
47${PACKAGE}FILESMODE_ra.py=0555
48${PACKAGE}FILESMODE_redirect.py=0555
49
50TESTS_SUBDIRS+=	frag6
51
52.include <bsd.test.mk>
53