1# $FreeBSD$ 2 3.include <bsd.own.mk> 4 5TESTSDIR= ${TESTSBASE}/sys/net 6BINDIR= ${TESTSDIR} 7 8ATF_TESTS_SH+= if_lagg_test 9ATF_TESTS_SH+= if_clone_test 10 11# The tests are written to be run in parallel, but doing so leads to random 12# panics. I think it's because the kernel's list of interfaces isn't properly 13# locked. 14TEST_METADATA+= is_exclusive=true 15 16MAN= 17PROG= randsleep 18 19WARNS?= 6 20 21.include <bsd.test.mk> 22