1d6f5f214a
If VIMAGE is present we can start jails with their own pf instance. This makes it fairly easy to run tests. For example, this basic test verifies that drop/pass and icmp classification works. It's a basic sanity test for pf, and hopefully an example on how to write more pf tests. The tests are skipped if VIMAGE is not enabled. This work is inspired by the GSoC work of Panagiotes Mousikides. Differential Revision: https://reviews.freebsd.org/D12580
27 lines
521 B
Makefile
27 lines
521 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys
|
|
|
|
TESTS_SUBDIRS+= acl
|
|
TESTS_SUBDIRS+= aio
|
|
TESTS_SUBDIRS+= fifo
|
|
TESTS_SUBDIRS+= file
|
|
TESTS_SUBDIRS+= fs
|
|
TESTS_SUBDIRS+= geom
|
|
TESTS_SUBDIRS+= kern
|
|
TESTS_SUBDIRS+= kqueue
|
|
TESTS_SUBDIRS+= mac
|
|
TESTS_SUBDIRS+= mqueue
|
|
TESTS_SUBDIRS+= netinet
|
|
TESTS_SUBDIRS+= netpfil
|
|
TESTS_SUBDIRS+= opencrypto
|
|
TESTS_SUBDIRS+= posixshm
|
|
TESTS_SUBDIRS+= sys
|
|
TESTS_SUBDIRS+= vfs
|
|
TESTS_SUBDIRS+= vm
|
|
|
|
# Items not integrated into kyua runs by default
|
|
SUBDIR+= pjdfstest
|
|
|
|
.include <bsd.test.mk>
|