Date: Fri, 3 May 2024 07:52:51 GMT From: Kristof Provost <kp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: bf8988187f0d - main - pf tests: fix REQUIRED_MODULES typo Message-ID: <202405030752.4437qpk1058077@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=bf8988187f0d0ed87934b6e2537ceb1a8f61fbd4 commit bf8988187f0d0ed87934b6e2537ceb1a8f61fbd4 Author: Kristof Provost <kp@FreeBSD.org> AuthorDate: 2024-05-03 07:51:37 +0000 Commit: Kristof Provost <kp@FreeBSD.org> CommitDate: 2024-05-03 07:51:37 +0000 pf tests: fix REQUIRED_MODULES typo This ensures we don't try to run the nat66 tests if pf is not loaded. Sponsored by: Rubicon Communications, LLC ("Netgate") --- tests/sys/netpfil/pf/nat66.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/netpfil/pf/nat66.py b/tests/sys/netpfil/pf/nat66.py index 12d3cb25af0a..3a037ac710fc 100644 --- a/tests/sys/netpfil/pf/nat66.py +++ b/tests/sys/netpfil/pf/nat66.py @@ -47,7 +47,7 @@ class DelayedSend(threading.Thread): sp.send(self._packet) class TestNAT66(VnetTestTemplate): - REQUIRED_MODUES = [ "pf" ] + REQUIRED_MODULES = [ "pf" ] TOPOLOGY = { "vnet1": {"ifaces": ["if1"]}, "vnet2": {"ifaces": ["if1", "if2"]},
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405030752.4437qpk1058077>