The branch main has been updated by kp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=f2e956c915fd8a0f7a9aa9ed8873a9d15db0d0ae

commit f2e956c915fd8a0f7a9aa9ed8873a9d15db0d0ae
Author:     Kristof Provost <k...@freebsd.org>
AuthorDate: 2025-08-01 11:50:20 +0000
Commit:     Kristof Provost <k...@freebsd.org>
CommitDate: 2025-08-05 22:27:16 +0000

    pf tests: robustness improvement
    
    Make a few tests less likely to intermittently fail by giving background 
server
    processes a bit more time to finish starting.
    
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
---
 tests/sys/netpfil/pf/nat64.sh | 12 ++++++------
 tests/sys/netpfil/pf/sctp.py  | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+), 6 deletions(-)

diff --git a/tests/sys/netpfil/pf/nat64.sh b/tests/sys/netpfil/pf/nat64.sh
index da95a7bf9893..f92a69f2abce 100644
--- a/tests/sys/netpfil/pf/nat64.sh
+++ b/tests/sys/netpfil/pf/nat64.sh
@@ -200,7 +200,7 @@ tcp_in_body()
 
        # Sanity check & delay for nc startup
        atf_check -s exit:0 -o ignore \
-           ping6 -c 1 64:ff9b::192.0.2.2
+           ping6 -c 3 64:ff9b::192.0.2.2
 
        rcv=$(nc -w 3 -6 64:ff9b::c000:202 1234)
        if [ "${rcv}" != "foo" ];
@@ -230,7 +230,7 @@ tcp_out_body()
 
        # Sanity check & delay for nc startup
        atf_check -s exit:0 -o ignore \
-           ping6 -c 1 64:ff9b::192.0.2.2
+           ping6 -c 3 64:ff9b::192.0.2.2
 
        rcv=$(nc -w 3 -6 64:ff9b::c000:202 1234)
        if [ "${rcv}" != "foo" ];
@@ -260,7 +260,7 @@ udp_in_body()
 
        # Sanity check & delay for nc startup
        atf_check -s exit:0 -o ignore \
-           ping6 -c 1 64:ff9b::192.0.2.2
+           ping6 -c 3 64:ff9b::192.0.2.2
 
        rcv=$(echo bar | nc -w 3 -6 -u 64:ff9b::c000:202 1234)
        if [ "${rcv}" != "foo" ];
@@ -290,7 +290,7 @@ udp_out_body()
 
        # Sanity check & delay for nc startup
        atf_check -s exit:0 -o ignore \
-           ping6 -c 1 64:ff9b::192.0.2.2
+           ping6 -c 3 64:ff9b::192.0.2.2
 
        rcv=$(echo bar | nc -w 3 -6 -u 64:ff9b::c000:202 1234)
        if [ "${rcv}" != "foo" ];
@@ -323,7 +323,7 @@ sctp_in_body()
 
        # Sanity check & delay for nc startup
        atf_check -s exit:0 -o ignore \
-           ping6 -c 1 64:ff9b::192.0.2.2
+           ping6 -c 3 64:ff9b::192.0.2.2
 
        rcv=$(echo bar | nc --sctp -w 3 -6 64:ff9b::c000:202 1234)
        if [ "${rcv}" != "foo" ];
@@ -356,7 +356,7 @@ sctp_out_body()
 
        # Sanity check & delay for nc startup
        atf_check -s exit:0 -o ignore \
-           ping6 -c 1 64:ff9b::192.0.2.2
+           ping6 -c 3 64:ff9b::192.0.2.2
 
        rcv=$(echo bar | nc --sctp -w 3 -6 64:ff9b::c000:202 1234)
        if [ "${rcv}" != "foo" ];
diff --git a/tests/sys/netpfil/pf/sctp.py b/tests/sys/netpfil/pf/sctp.py
index da42ce527195..f492f26b63a1 100644
--- a/tests/sys/netpfil/pf/sctp.py
+++ b/tests/sys/netpfil/pf/sctp.py
@@ -271,6 +271,9 @@ class TestSCTP(VnetTestTemplate):
             "pass inet proto sctp to 192.0.2.0/24",
             "pass on lo"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("192.0.2.3", 1234)
         client.send(b"hello", 0)
@@ -309,6 +312,9 @@ class TestSCTP(VnetTestTemplate):
             "pass on lo",
             "pass inet proto sctp from 192.0.2.0/24"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("192.0.2.3", 1234, "192.0.2.1")
         client.send(b"hello", 0)
@@ -379,6 +385,9 @@ class TestSCTP(VnetTestTemplate):
             "pass on lo",
             "pass inet proto sctp to 192.0.2.0/24"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("192.0.2.3", 1234)
         client.send(b"hello", 0)
@@ -410,6 +419,9 @@ class TestSCTP(VnetTestTemplate):
             "pass on lo",
             "pass inet proto sctp to 192.0.2.0/24"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("192.0.2.3", 1234)
         client.send(b"hello", 0)
@@ -440,6 +452,9 @@ class TestSCTP(VnetTestTemplate):
             "pass on lo",
             "pass inet proto sctp to 192.0.2.0/24"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Set up a connection, which will try to create states for all 
addresses
         # we have assigned
         client = SCTPClient("192.0.2.3", 1234)
@@ -464,6 +479,9 @@ class TestSCTP(VnetTestTemplate):
             "pass inet proto sctp to 192.0.2.3",
             "pass on lo"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("192.0.2.3", 1234)
         client.send(b"hello", 0)
@@ -502,6 +520,9 @@ class TestSCTP(VnetTestTemplate):
             "pass inet proto sctp to 192.0.2.3 keep state (allow-related)",
             "pass on lo"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("192.0.2.3", 1234)
         client.send(b"hello", 0)
@@ -558,6 +579,9 @@ class TestSCTPv6(VnetTestTemplate):
             "pass on lo",
             "pass inet6 proto sctp to 2001:db8::0/64"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("2001:db8::3", 1234)
         client.send(b"hello", 0)
@@ -596,6 +620,9 @@ class TestSCTPv6(VnetTestTemplate):
             "pass on lo",
             "pass inet6 proto sctp from 2001:db8::/64"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("2001:db8::3", 1234, "2001:db8::1")
         client.send(b"hello", 0)
@@ -665,6 +692,9 @@ class TestSCTPv6(VnetTestTemplate):
             "pass on lo",
             "pass inet6 proto sctp to 2001:db8::0/64"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("2001:db8::3", 1234)
         client.send(b"hello", 0)
@@ -696,6 +726,9 @@ class TestSCTPv6(VnetTestTemplate):
             "pass on lo",
             "pass inet6 proto sctp to 2001:db8::0/64"])
 
+        # Give the server some time to come up
+        time.sleep(3)
+
         # Sanity check, we can communicate with the primary address.
         client = SCTPClient("2001:db8::3", 1234)
         client.send(b"hello", 0)

Reply via email to