From: Russ Cox Date: Wed, 7 Mar 2012 05:02:07 +0000 (-0500) Subject: net: disable another external network test X-Git-Tag: weekly.2012-03-13~155 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c10650979f3d66f231b8e69e1cd8293cde4ca778;p=gostls13.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 --- diff --git a/src/pkg/net/multicast_test.go b/src/pkg/net/multicast_test.go index fe5e8de2f6..67261b1ee7 100644 --- a/src/pkg/net/multicast_test.go +++ b/src/pkg/net/multicast_test.go @@ -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 {