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

Kristof Provost kp at FreeBSD.org
Thu Sep 5 18:54:47 UTC 2019


Author: kp
Date: Thu Sep  5 18:54:46 2019
New Revision: 351884
URL: https://svnweb.freebsd.org/changeset/base/351884

Log:
  Set required program for all acl tests
  
  r339782 re-enabled acl test 00 and 02, which were disabled in r336617
  due to PR 229930.
  When the tests were disabled the code to set their required programs was
  disabled as well, but this was not reinstated when r339782 re-enabled
  them.
  Do so now.
  
  Sponsored by:	Axiado

Modified:
  head/tests/sys/acl/Makefile

Modified: head/tests/sys/acl/Makefile
==============================================================================
--- head/tests/sys/acl/Makefile	Thu Sep  5 18:47:58 2019	(r351883)
+++ head/tests/sys/acl/Makefile	Thu Sep  5 18:54:46 2019	(r351884)
@@ -30,8 +30,8 @@ _ACL_PROGS=		getfacl setfacl
 TEST_METADATA.$t+=	required_programs="perl zpool ${_ACL_PROGS}"
 .endfor
 
-# .for t in 00 02
-# TEST_METADATA.$t+=	required_programs="perl ${_ACL_PROGS}"
-# .endfor
+.for t in 00 02
+TEST_METADATA.$t+=	required_programs="perl ${_ACL_PROGS}"
+.endfor
 
 .include <bsd.test.mk>


More information about the svn-src-head mailing list