mirror of
https://github.com/golang/go.git
synced 2026-06-28 03:40:37 +00:00
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:
parent
80123ef4bf
commit
080a6d5fa8
1 changed files with 4 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue