mirror of https://github.com/golang/go.git
net: avoid the Mac firewall (again)
R=golang-dev, r CC=golang-dev https://golang.org/cl/6209072
This commit is contained in:
parent
9815515df1
commit
1171dbdd2d
|
|
@ -544,6 +544,11 @@ func TestWildWildcardListener(t *testing.T) {
|
|||
return
|
||||
}
|
||||
|
||||
if testing.Short() || !*testExternal {
|
||||
t.Logf("skipping test to avoid external network")
|
||||
return
|
||||
}
|
||||
|
||||
defer func() {
|
||||
if recover() != nil {
|
||||
t.Fatalf("panicked")
|
||||
|
|
|
|||
Loading…
Reference in New Issue