2fae26bd8b
It was originally written by Sun as part of the STF (Solaris test framework). They open sourced it in OpenSolaris, then HighCloud partially ported it to FreeBSD, and Spectra Logic finished the port. We also added many testcases, fixed many broken ones, and converted them all to the ATF framework. We've had help along the way from avg, araujo, smh, and brd. By default most of the tests are disabled. Set the disks Kyua variable to enable them. Submitted by: asomers, will, justing, ken, brd, avg, araujo, smh Sponsored by: Spectra Logic Corp, HighCloud
35 lines
640 B
Makefile
35 lines
640 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys
|
|
|
|
TESTS_SUBDIRS+= acl
|
|
TESTS_SUBDIRS+= aio
|
|
TESTS_SUBDIRS+= ${_cddl}
|
|
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+= netipsec
|
|
TESTS_SUBDIRS+= netpfil
|
|
TESTS_SUBDIRS+= opencrypto
|
|
TESTS_SUBDIRS+= posixshm
|
|
TESTS_SUBDIRS+= sys
|
|
TESTS_SUBDIRS+= vfs
|
|
TESTS_SUBDIRS+= vm
|
|
|
|
.if ${MK_CDDL} != "no"
|
|
_cddl= cddl
|
|
.endif
|
|
|
|
# Items not integrated into kyua runs by default
|
|
SUBDIR+= pjdfstest
|
|
|
|
.include <bsd.test.mk>
|