1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Wed, 22 Oct 2025 07:04:26 -0400
Subject: Disable TestSCTPConcurrentAccept
Forwarded: not-needed
Test is flaky
Bug-Upstream: https://github.com/ishidawataru/sctp/issues/47
---
sctp_test.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/sctp_test.go b/sctp_test.go
index 8ad88f6..81bea55 100644
--- a/sctp_test.go
+++ b/sctp_test.go
@@ -101,6 +101,7 @@ func TestSCTPListenerName(t *testing.T) {
}
func TestSCTPConcurrentAccept(t *testing.T) {
+ t.Skip("Test is flaky, cf. https://github.com/ishidawataru/sctp/issues/47")
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4))
addr, _ := ResolveSCTPAddr("sctp", "127.0.0.1:0")
ln, err := ListenSCTP("sctp", addr)
|