From owner-dev-commits-src-all@freebsd.org Thu Jun 10 23:56:22 2021 Return-Path: Delivered-To: dev-commits-src-all@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 99D96655BEF; Thu, 10 Jun 2021 23:56:22 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G1LTy3gcfz4tn1; Thu, 10 Jun 2021 23:56:22 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66EA018678; Thu, 10 Jun 2021 23:56:22 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15ANuMT8081685; Thu, 10 Jun 2021 23:56:22 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15ANuM25081684; Thu, 10 Jun 2021 23:56:22 GMT (envelope-from git) Date: Thu, 10 Jun 2021 23:56:22 GMT Message-Id: <202106102356.15ANuM25081684@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Brad Davis Subject: git: ab6d05336caa - main - tests/sys/netpfil: Move common tests out from behind MK_PF. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: brd X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ab6d05336caaa10ae315f81534851e3764a8660c Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jun 2021 23:56:22 -0000 The branch main has been updated by brd: URL: https://cgit.FreeBSD.org/src/commit/?id=ab6d05336caaa10ae315f81534851e3764a8660c commit ab6d05336caaa10ae315f81534851e3764a8660c Author: Brad Davis AuthorDate: 2021-06-10 23:01:53 +0000 Commit: Brad Davis CommitDate: 2021-06-10 23:56:01 +0000 tests/sys/netpfil: Move common tests out from behind MK_PF. Approved by: kp Sponsored by: Rubicon Communications, LLC ("Netgate") --- tests/sys/netpfil/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/sys/netpfil/Makefile b/tests/sys/netpfil/Makefile index b6c90f2b3c86..89629b8c3bd2 100644 --- a/tests/sys/netpfil/Makefile +++ b/tests/sys/netpfil/Makefile @@ -3,10 +3,10 @@ .include TESTSDIR= ${TESTSBASE}/sys/netpfil +TESTS_SUBDIRS+= common .if ${MK_PF} != "no" -TESTS_SUBDIRS+= pf \ - common +TESTS_SUBDIRS+= pf .endif .include