Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Jun 2025 12:06:52 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: 2fe78d74faa5 - main - pf tests: do not shutdown the sctp server in sctp:related_icmp
Message-ID:  <202506211206.55LC6qmn059360@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=2fe78d74faa5cfc3d6f551dcce8fdf6fdb1a65ef

commit 2fe78d74faa5cfc3d6f551dcce8fdf6fdb1a65ef
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2025-06-20 13:34:16 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2025-06-21 10:56:34 +0000

    pf tests: do not shutdown the sctp server in sctp:related_icmp
    
    This caused intermittent test failures because we failed to actually send the
    large request (and thus failed to provoke ICMP packets).
    
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
---
 tests/sys/netpfil/pf/sctp.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/sys/netpfil/pf/sctp.sh b/tests/sys/netpfil/pf/sctp.sh
index 14cd49dfb1f5..57dcdad1d866 100644
--- a/tests/sys/netpfil/pf/sctp.sh
+++ b/tests/sys/netpfil/pf/sctp.sh
@@ -810,7 +810,7 @@ related_icmp_body()
 	fi
 
 	# Do we see ICMP traffic if we send overly large traffic?
-	echo "foo" | jexec srv nc --sctp -N -l 1234 >/dev/null &
+	echo "foo" | jexec srv nc --sctp -l 1234 >/dev/null &
 	sleep 1
 
 	atf_check -s exit:0 -o not-match:".*destination unreachable:.*" \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202506211206.55LC6qmn059360>