0ee3908d56
These tests are failing due to PR 229930. Unfortunately, TAP tests can't be marked as expected failures. PR: 229930 Reported by: Jenkins
40 lines
843 B
Makefile
40 lines
843 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
|
|
|
|
# Disable 00 and 02 until they've been updated for setfacl's new behavior
|
|
# PR 229930 tests/sys/acl/00:main fails in CI due to unexpected error message
|
|
# TAP_TESTS_SH+= 00
|
|
# TAP_TESTS_SH+= 02
|
|
TAP_TESTS_SH+= 01
|
|
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>
|