Date: Sat, 20 Mar 2021 14:49:19 GMT From: Kristof Provost <kp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: e6e75224a5ae - stable/12 - pf tests: Fix unsupported ping6 argument Message-ID: <202103201449.12KEnJqJ048414@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=e6e75224a5ae60db848b8c5e6021375a1340744a commit e6e75224a5ae60db848b8c5e6021375a1340744a Author: Kristof Provost <kp@FreeBSD.org> AuthorDate: 2021-03-20 14:47:50 +0000 Commit: Kristof Provost <kp@FreeBSD.org> CommitDate: 2021-03-20 14:48:51 +0000 pf tests: Fix unsupported ping6 argument ping6 (in stable/12) does not support '-t'. Change it to '-X'. Direct commit to stable/12. Sponsored by: Rubicon Communications, LLC ("Netgate") --- tests/sys/netpfil/pf/tos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/sys/netpfil/pf/tos.sh b/tests/sys/netpfil/pf/tos.sh index 4e2832ba3317..ea41f890871a 100644 --- a/tests/sys/netpfil/pf/tos.sh +++ b/tests/sys/netpfil/pf/tos.sh @@ -79,8 +79,8 @@ v6_body() pft_set_rules alcatraz "pass" \ "block in tos va" - atf_check -s exit:0 -o ignore ping6 -t 1 -c 1 2001:db8:42::2 - atf_check -s exit:2 -o ignore ping6 -t 1 -c 1 -z 176 2001:db8:42::2 + atf_check -s exit:0 -o ignore ping6 -X 1 -c 1 2001:db8:42::2 + atf_check -s exit:2 -o ignore ping6 -X 1 -c 1 -z 176 2001:db8:42::2 } v6_cleanup()
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103201449.12KEnJqJ048414>