svn commit: r302687 - stable/10/tests/sys/acl

Alan Somers asomers at FreeBSD.org
Tue Jul 12 22:09:06 UTC 2016


Author: asomers
Date: Tue Jul 12 22:09:05 2016
New Revision: 302687
URL: https://svnweb.freebsd.org/changeset/base/302687

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

Modified:
  stable/10/tests/sys/acl/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/tests/sys/acl/Makefile
==============================================================================
--- stable/10/tests/sys/acl/Makefile	Tue Jul 12 21:57:05 2016	(r302686)
+++ stable/10/tests/sys/acl/Makefile	Tue Jul 12 22:09:05 2016	(r302687)
@@ -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>


More information about the svn-src-stable mailing list