mirror of https://github.com/golang/go.git
net: disable another external network test
I don't know enough about multicast. Should this be disabled on all systems, not just Windows? R=golang-dev CC=golang-dev https://golang.org/cl/5754060
This commit is contained in:
parent
85ae6a18b5
commit
c10650979f
|
|
@ -90,6 +90,11 @@ func TestSimpleMulticastListener(t *testing.T) {
|
|||
case "plan9":
|
||||
t.Logf("skipping test on %q", runtime.GOOS)
|
||||
return
|
||||
case "windows":
|
||||
if testing.Short() || !*testExternal {
|
||||
t.Logf("skipping test on windows to avoid firewall")
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
for _, tt := range multicastListenerTests {
|
||||
|
|
|
|||
Loading…
Reference in New Issue