svn commit: r302036 - head/tests/sys/acl

Alan Somers asomers at FreeBSD.org
Mon Jun 20 23:17:01 UTC 2016


Author: asomers
Date: Mon Jun 20 23:17:00 2016
New Revision: 302036
URL: https://svnweb.freebsd.org/changeset/base/302036

Log:
  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

Modified:
  head/tests/sys/acl/Makefile

Modified: head/tests/sys/acl/Makefile
==============================================================================
--- head/tests/sys/acl/Makefile	Mon Jun 20 22:45:19 2016	(r302035)
+++ head/tests/sys/acl/Makefile	Mon Jun 20 23:17:00 2016	(r302036)
@@ -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>


More information about the svn-src-head mailing list