1# $FreeBSD$ 2 3.include <bsd.own.mk> 4 5TESTSDIR= ${TESTSBASE}/sys/net 6BINDIR= ${TESTSDIR} 7 8ATF_TESTS_C+= if_epair 9ATF_TESTS_SH+= if_bridge_test 10ATF_TESTS_SH+= if_clone_test 11ATF_TESTS_SH+= if_lagg_test 12ATF_TESTS_SH+= if_tun_test 13ATF_TESTS_SH+= if_vlan 14 15TESTS_SUBDIRS+= routing 16 17# The tests are written to be run in parallel, but doing so leads to random 18# panics. I think it's because the kernel's list of interfaces isn't properly 19# locked. 20TEST_METADATA+= is_exclusive=true 21 22MAN= 23PROGS+= randsleep 24 25CFLAGS+= -I${.CURDIR:H:H} 26 27WARNS?= 6 28 29.include <bsd.test.mk> 30