aboutsummaryrefslogtreecommitdiff
path: root/tests/sys/net/Makefile
blob: cccabd9fc775c3c75fef7aa8cf6a1365363ebd16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# $FreeBSD$

PACKAGE=	tests

TESTSDIR=	${TESTSBASE}/sys/net
BINDIR=		${TESTSDIR}

ATF_TESTS_C+=	if_epair
ATF_TESTS_SH+=	if_bridge_test
ATF_TESTS_SH+=	if_clone_test
ATF_TESTS_SH+=	if_lagg_test
ATF_TESTS_SH+=	if_tun_test
ATF_TESTS_SH+=	if_vlan

# The tests are written to be run in parallel, but doing so leads to random
# panics.  I think it's because the kernel's list of interfaces isn't properly
# locked.
TEST_METADATA+=	is_exclusive=true

${PACKAGE}FILES+=	\
		dhclient_pcp.conf \
		pcp.py \
		stp.py

${PACKAGE}FILESMODE_pcp.py=		0555
${PACKAGE}FILESMODE_stp.py=		0555

MAN=
PROGS+=		randsleep

WARNS?=		6

.include <bsd.test.mk>