Commit 1171dbdd authored by Russ Cox's avatar Russ Cox

net: avoid the Mac firewall (again)

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/6209072
parent 9815515d
...@@ -544,6 +544,11 @@ func TestWildWildcardListener(t *testing.T) { ...@@ -544,6 +544,11 @@ func TestWildWildcardListener(t *testing.T) {
return return
} }
if testing.Short() || !*testExternal {
t.Logf("skipping test to avoid external network")
return
}
defer func() { defer func() {
if recover() != nil { if recover() != nil {
t.Fatalf("panicked") t.Fatalf("panicked")
......
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