net/http: disable HTTP/3 tests prior to freeze

For #78737

Change-Id: Ie8468fcdf6f7fa8e89522eaa0e7ba2636a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/777921
Auto-Submit: Nicholas Husin <husin@google.com>
Reviewed-by: Nicholas Husin <husin@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
Nicholas S. Husin 2026-05-14 11:40:19 -04:00 committed by Gopher Robot
parent 80123ef4bf
commit 080a6d5fa8

View file

@ -115,6 +115,10 @@ func run[T TBRun[T]](t T, f func(t T, mode testMode), opts ...any) {
setParallel(t)
}
for _, mode := range modes {
// TODO(nsh): re-enable the tests once tree re-opens.
if mode == http3Mode {
continue
}
t.Run(string(mode), func(t T) {
t.Helper()
if t, ok := any(t).(*testing.T); ok && parallel {