mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
MK_AUDIT already controls auditd(8), praudit(1), etc. It should also control the audit test suite. Submitted by: ngie MFC after: 2 weeks Pull Request: https://github.com/freebsd/freebsd/pull/240
41 lines
766 B
Makefile
41 lines
766 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys
|
|
|
|
TESTS_SUBDIRS+= acl
|
|
TESTS_SUBDIRS+= aio
|
|
TESTS_SUBDIRS+= ${_audit}
|
|
TESTS_SUBDIRS+= auditpipe
|
|
TESTS_SUBDIRS+= capsicum
|
|
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_AUDIT} != "no"
|
|
_audit= audit
|
|
.endif
|
|
|
|
.if ${MK_CDDL} != "no"
|
|
_cddl= cddl
|
|
.endif
|
|
|
|
# Items not integrated into kyua runs by default
|
|
SUBDIR+= pjdfstest
|
|
|
|
.include <bsd.test.mk>
|