From owner-svn-src-head@freebsd.org Thu Sep 5 18:54:47 2019 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A0116D06F0; Thu, 5 Sep 2019 18:54:47 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46PVHC3nVfz4FGt; Thu, 5 Sep 2019 18:54:47 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 644FD8A70; Thu, 5 Sep 2019 18:54:47 +0000 (UTC) (envelope-from kp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x85IslNq076760; Thu, 5 Sep 2019 18:54:47 GMT (envelope-from kp@FreeBSD.org) Received: (from kp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x85Islrn076759; Thu, 5 Sep 2019 18:54:47 GMT (envelope-from kp@FreeBSD.org) Message-Id: <201909051854.x85Islrn076759@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kp set sender to kp@FreeBSD.org using -f From: Kristof Provost Date: Thu, 5 Sep 2019 18:54:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r351884 - head/tests/sys/acl X-SVN-Group: head X-SVN-Commit-Author: kp X-SVN-Commit-Paths: head/tests/sys/acl X-SVN-Commit-Revision: 351884 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Sep 2019 18:54:47 -0000 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