095aabf7dc
Very basic bridge test: Set up two jails and test that they can pass IPv4 traffic over the bridge. Reviewed by: melifaro, philip Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D23697
28 lines
535 B
Makefile
28 lines
535 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
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
|
|
|
|
TESTS_SUBDIRS+= routing
|
|
|
|
# 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=
|
|
PROGS+= randsleep
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|