d41edcbb5f
r339782 re-enabled acl test 00 and 02, which were disabled in r336617 due to PR 229930. When the tests were disabled the code to set their required programs was disabled as well, but this was not reinstated when r339782 re-enabled them. Do so now. Sponsored by: Axiado
38 lines
681 B
Makefile
38 lines
681 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/acl
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
${PACKAGE}FILES+= tools-crossfs.test
|
|
${PACKAGE}FILES+= tools-nfs4.test
|
|
${PACKAGE}FILES+= tools-nfs4-psarc.test
|
|
${PACKAGE}FILES+= tools-nfs4-trivial.test
|
|
${PACKAGE}FILES+= tools-posix.test
|
|
|
|
SCRIPTS+= run
|
|
|
|
TAP_TESTS_SH+= 00
|
|
TAP_TESTS_SH+= 01
|
|
TAP_TESTS_SH+= 02
|
|
TAP_TESTS_SH+= 03
|
|
TAP_TESTS_SH+= 04
|
|
|
|
.for t in ${TAP_TESTS_SH}
|
|
TEST_METADATA.$t+= required_user="root"
|
|
.endfor
|
|
|
|
_ACL_PROGS= getfacl setfacl
|
|
|
|
.for t in 01 03 04
|
|
TEST_METADATA.$t+= required_programs="perl zpool ${_ACL_PROGS}"
|
|
.endfor
|
|
|
|
.for t in 00 02
|
|
TEST_METADATA.$t+= required_programs="perl ${_ACL_PROGS}"
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|