1# $FreeBSD$ 2 3PACKAGE= tests 4FILESGROUPS= TESTS 5TESTSPACKAGE= ${PACKAGE} 6TESTSDIR= ${TESTSBASE}/sys/acl 7 8BINDIR= ${TESTSDIR} 9 10FILES+= tools-crossfs.test 11FILES+= tools-nfs4.test 12FILES+= tools-nfs4-psarc.test 13FILES+= tools-nfs4-trivial.test 14FILES+= tools-posix.test 15 16SCRIPTS+= run 17 18TAP_TESTS_SH+= 00 19TAP_TESTS_SH+= 01 20TAP_TESTS_SH+= 02 21TAP_TESTS_SH+= 03 22TAP_TESTS_SH+= 04 23 24.for t in ${TAP_TESTS_SH} 25TEST_METADATA.$t+= required_user="root" 26.endfor 27 28_ACL_PROGS= getfacl setfacl 29 30.for t in 01 03 04 31TEST_METADATA.$t+= required_programs="zpool ${_ACL_PROGS}" 32.endfor 33 34.for t in 00 02 35TEST_METADATA.$t+= required_programs="${_ACL_PROGS}" 36.endfor 37 38.include <bsd.test.mk> 39