From: David du Colombier <0intro@gmail.com> Date: Wed, 27 Apr 2016 23:01:15 +0000 (+0200) Subject: net/http: skip TestTransportRemovesDeadIdleConnections on Plan 9 X-Git-Tag: go1.7beta1~440 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cad04e7e66d51486b9d3b63bf1b9281a0153dd9f;p=gostls13.git net/http: skip TestTransportRemovesDeadIdleConnections on Plan 9 Updates #15464. Change-Id: If3221034bb10751c6fcf1fbeba401a879c18079f Reviewed-on: https://go-review.googlesource.com/22513 Run-TryBot: David du Colombier <0intro@gmail.com> TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/http/transport_test.go b/src/net/http/transport_test.go index 2e27cc1850..bf2aa2f0b6 100644 --- a/src/net/http/transport_test.go +++ b/src/net/http/transport_test.go @@ -439,6 +439,9 @@ func TestTransportMaxPerHostIdleConns(t *testing.T) { } func TestTransportRemovesDeadIdleConnections(t *testing.T) { + if runtime.GOOS == "plan9" { + t.Skip("skipping test; see https://golang.org/issue/15464") + } defer afterTest(t) ts := httptest.NewServer(HandlerFunc(func(w ResponseWriter, r *Request) { io.WriteString(w, r.RemoteAddr)