3846e5755f
There was a problem destroying renamed tun interfaces in vnet jails. This was fixed in r344794. Test the previously failing scenario. PR: 235704 MFC after: 2 weeks
23 lines
432 B
Makefile
23 lines
432 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/net
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
ATF_TESTS_SH+= if_lagg_test
|
|
ATF_TESTS_SH+= if_clone_test
|
|
ATF_TESTS_SH+= if_tun_test
|
|
|
|
# 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
|
|
|
|
MAN=
|
|
PROG= randsleep
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|