From 0b37bdfdf0ade471acecbe8410069a34bf3d8fce Mon Sep 17 00:00:00 2001 From: Damien Neil Date: Mon, 9 Feb 2026 11:27:09 -0800 Subject: [PATCH] quic: don't run TestStreamsCreateConcurrency in synctest bubble This test creates a pair of real UDP sockets; synctest doesn't work well with real network connections and interactions between the real network and synctest are probably causing flakiness. Fixes golang/go#76510 Change-Id: I9e8a959e7d0077d8191ceb8284f6c338dd2688ab Reviewed-on: https://go-review.googlesource.com/c/net/+/743402 Auto-Submit: Nicholas Husin Reviewed-by: Nicholas Husin LUCI-TryBot-Result: Go LUCI Reviewed-by: Nicholas Husin --- quic/conn_streams_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/quic/conn_streams_test.go b/quic/conn_streams_test.go index b95aa471..52dfd138 100644 --- a/quic/conn_streams_test.go +++ b/quic/conn_streams_test.go @@ -500,9 +500,6 @@ func testStreamsCreateAndCloseRemote(t *testing.T) { } func TestStreamsCreateConcurrency(t *testing.T) { - synctest.Test(t, testStreamsCreateConcurrency) -} -func testStreamsCreateConcurrency(t *testing.T) { cli, srv := newLocalConnPair(t, &Config{}, &Config{}) srvdone := make(chan int)