1
0
mirror of https://github.com/golang/go synced 2024-11-23 05:00:07 -07:00

net: skip TestMulticastListener on Solaris

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7308060
This commit is contained in:
Ian Lance Taylor 2013-02-07 09:58:42 -08:00
parent fe7dbea00e
commit 514f10b9ab

View File

@ -47,7 +47,7 @@ var multicastListenerTests = []struct {
// listener with same address family, same group address and same port.
func TestMulticastListener(t *testing.T) {
switch runtime.GOOS {
case "netbsd", "openbsd", "plan9", "windows":
case "netbsd", "openbsd", "plan9", "solaris", "windows":
t.Skipf("skipping test on %q", runtime.GOOS)
case "linux":
if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {