be484a1255
fact that Jenkins hardcodes image sizes to 2GB with the FreeBSD_HEAD job This is to stop the unnecessary failure emails because we've gone over the 2GB limit MFC after: 1 week X-MFC with: r295341 Sponsored by: EMC / Isilon Storage Division
36 lines
610 B
Makefile
36 lines
610 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/acl
|
|
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
FILES+= tools-crossfs.test
|
|
FILES+= tools-nfs4.test
|
|
FILES+= tools-nfs4-psarc.test
|
|
FILES+= tools-nfs4-trivial.test
|
|
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="zpool ${_ACL_PROGS}"
|
|
.endfor
|
|
|
|
.for t in 00 02
|
|
TEST_METADATA.$t+= required_programs="${_ACL_PROGS}"
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|