Skip sys/acl tests on systems lacking perl

tests/sys/acl/Makefile
	add perl to the required_programs for all tests in this directory

Reviewed by:	ngie
Approved by:	re (gjb)
MFC after:	4 weeks
Sponsored by:	Spectra Logic Corp
Differential Revision:	https://reviews.freebsd.org/D6870
This commit is contained in:
asomers 2016-06-20 23:17:00 +00:00
parent 48e577c3c1
commit 63f808402a

View File

@ -27,11 +27,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>