Date: Thu, 5 Sep 2019 18:54:47 +0000 (UTC) From: Kristof Provost <kp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r351884 - head/tests/sys/acl Message-ID: <201909051854.x85Islrn076759@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909051854.x85Islrn076759>