MFC r302036

Skip sys/acl tests on systems lacking perl

tests/sys/acl/Makefile
        add perl to the required_programs for all tests in this directory
This commit is contained in:
Alan Somers 2016-07-12 22:09:05 +00:00
parent d2c1a9c43c
commit 30baf996d2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=302687

View File

@ -25,11 +25,11 @@ TEST_METADATA.$t+= required_user="root"
_ACL_PROGS= getfacl setfacl
.for t in 01 03 04
TEST_METADATA.$t+= required_programs="zpool ${_ACL_PROGS}"
TEST_METADATA.$t+= required_programs="perl zpool ${_ACL_PROGS}"
.endfor
.for t in 00 02
TEST_METADATA.$t+= required_programs="${_ACL_PROGS}"
TEST_METADATA.$t+= required_programs="perl ${_ACL_PROGS}"
.endfor
.include <bsd.test.mk>