git: 357d111ef71f - stable/14 - pf tests: make ether:dummynet test a little more robust
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 11 Jun 2024 13:27:39 UTC
The branch stable/14 has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=357d111ef71fabba9590d2f59a1539d5d27a1f82
commit 357d111ef71fabba9590d2f59a1539d5d27a1f82
Author: Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2024-06-01 20:37:36 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2024-06-11 06:05:38 +0000
pf tests: make ether:dummynet test a little more robust
Allow slightly more bandwidth, but cause ping to give up sooner.
MFC after: 1 week
Sponsored by: Rubicon Communications, LLC ("Netgate")
(cherry picked from commit 1c5b886e111663d3c7e30beddae9c10445f620d4)
---
tests/sys/netpfil/pf/ether.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/sys/netpfil/pf/ether.sh b/tests/sys/netpfil/pf/ether.sh
index 9a1ab1b005d7..e1855949476b 100644
--- a/tests/sys/netpfil/pf/ether.sh
+++ b/tests/sys/netpfil/pf/ether.sh
@@ -415,7 +415,7 @@ dummynet_body()
# Sanity check
atf_check -s exit:0 -o ignore ping -i .1 -c 3 -s 1200 192.0.2.2
- jexec alcatraz dnctl pipe 1 config bw 30Byte/s
+ jexec alcatraz dnctl pipe 1 config bw 300Byte/s
jexec alcatraz pfctl -e
pft_set_rules alcatraz \
"ether pass in dnpipe 1"
@@ -430,14 +430,14 @@ dummynet_body()
ping -i .1 -c 5 -s 1200 192.0.2.2
# We should now be hitting the limits and get this packet dropped.
- atf_check -s exit:2 -o ignore ping -c 1 -s 1200 192.0.2.2
+ atf_check -s exit:2 -o ignore ping -c 1 -t 1 -s 1200 192.0.2.2
# We can now also dummynet outbound traffic!
pft_set_rules alcatraz \
"ether pass out dnpipe 1"
# We should still be hitting the limits and get this packet dropped.
- atf_check -s exit:2 -o ignore ping -c 1 -s 1200 192.0.2.2
+ atf_check -s exit:2 -o ignore ping -c 1 -t 1 -s 1200 192.0.2.2
}
dummynet_cleanup()