Commit 845878a2 authored by Russ Cox's avatar Russ Cox

net/http: do not listen on public network during HTTP/2 test

Avoids Mac firewall box.

Change-Id: I000e421fa9639612d636b6fa4baf905459c5aeb2
Reviewed-on: https://go-review.googlesource.com/16514Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent ddbc802b
...@@ -1070,10 +1070,7 @@ func TestTLSServer(t *testing.T) { ...@@ -1070,10 +1070,7 @@ func TestTLSServer(t *testing.T) {
} }
func TestAutomaticHTTP2(t *testing.T) { func TestAutomaticHTTP2(t *testing.T) {
ln, err := net.Listen("tcp", ":0") ln := newLocalListener(t)
if err != nil {
t.Fatal(err)
}
ln.Close() // immediately (not a defer!) ln.Close() // immediately (not a defer!)
var s Server var s Server
if err := s.Serve(ln); err == nil { if err := s.Serve(ln); err == nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment