mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
Conditionalize installtion audit(4) tests on MK_AUDIT
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
This commit is contained in:
parent
7fe3fd48a5
commit
b1ce931bd8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=342173
@ -6,7 +6,7 @@ TESTSDIR= ${TESTSBASE}/sys
|
||||
|
||||
TESTS_SUBDIRS+= acl
|
||||
TESTS_SUBDIRS+= aio
|
||||
TESTS_SUBDIRS+= audit
|
||||
TESTS_SUBDIRS+= ${_audit}
|
||||
TESTS_SUBDIRS+= auditpipe
|
||||
TESTS_SUBDIRS+= capsicum
|
||||
TESTS_SUBDIRS+= ${_cddl}
|
||||
@ -27,6 +27,10 @@ TESTS_SUBDIRS+= sys
|
||||
TESTS_SUBDIRS+= vfs
|
||||
TESTS_SUBDIRS+= vm
|
||||
|
||||
.if ${MK_AUDIT} != "no"
|
||||
_audit= audit
|
||||
.endif
|
||||
|
||||
.if ${MK_CDDL} != "no"
|
||||
_cddl= cddl
|
||||
.endif
|
||||
|
@ -160,6 +160,22 @@ OLD_FILES+=usr/share/man/man5/auditdistd.conf.5.gz
|
||||
OLD_FILES+=usr/share/man/man8/audit.8.gz
|
||||
OLD_FILES+=usr/share/man/man8/auditd.8.gz
|
||||
OLD_FILES+=usr/share/man/man8/auditdistd.8.gz
|
||||
OLD_FILES+=usr/tests/sys/audit/process-control
|
||||
OLD_FILES+=usr/tests/sys/audit/open
|
||||
OLD_FILES+=usr/tests/sys/audit/network
|
||||
OLD_FILES+=usr/tests/sys/audit/miscellaneous
|
||||
OLD_FILES+=usr/tests/sys/audit/Kyuafile
|
||||
OLD_FILES+=usr/tests/sys/audit/ioctl
|
||||
OLD_FILES+=usr/tests/sys/audit/inter-process
|
||||
OLD_FILES+=usr/tests/sys/audit/file-write
|
||||
OLD_FILES+=usr/tests/sys/audit/file-read
|
||||
OLD_FILES+=usr/tests/sys/audit/file-delete
|
||||
OLD_FILES+=usr/tests/sys/audit/file-create
|
||||
OLD_FILES+=usr/tests/sys/audit/file-close
|
||||
OLD_FILES+=usr/tests/sys/audit/file-attribute-modify
|
||||
OLD_FILES+=usr/tests/sys/audit/file-attribute-access
|
||||
OLD_FILES+=usr/tests/sys/audit/administrative
|
||||
OLD_DIRS+=usr/tests/sys/audit
|
||||
.endif
|
||||
|
||||
.if ${MK_AUTHPF} == no
|
||||
|
Loading…
Reference in New Issue
Block a user