mirror of https://github.com/golang/go.git
net/http: skip flaky TestTransportMaxConnsPerHost for now
Updates #31784 Change-Id: Iee056c850c03939606b227a12715c76b0339d268 Reviewed-on: https://go-review.googlesource.com/c/go/+/175097 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
0a338f75d4
commit
bf35b7c8b1
|
|
@ -21,6 +21,7 @@ import (
|
|||
"errors"
|
||||
"fmt"
|
||||
"internal/nettrace"
|
||||
"internal/testenv"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
|
|
@ -590,9 +591,7 @@ func TestTransportMaxConnsPerHostIncludeDialInProgress(t *testing.T) {
|
|||
|
||||
func TestTransportMaxConnsPerHost(t *testing.T) {
|
||||
defer afterTest(t)
|
||||
if runtime.GOOS == "js" {
|
||||
t.Skipf("skipping test on js/wasm")
|
||||
}
|
||||
testenv.SkipFlaky(t, 31784)
|
||||
h := HandlerFunc(func(w ResponseWriter, r *Request) {
|
||||
_, err := w.Write([]byte("foo"))
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Reference in New Issue