1
0
mirror of https://github.com/golang/go synced 2024-09-25 01:20:13 -06:00

net: disable normal multicast testing on linux/arm

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5603043
This commit is contained in:
Mikio Hara 2012-02-01 02:42:56 +09:00
parent 2cc3351131
commit 847197d339

View File

@ -32,6 +32,10 @@ func TestListenMulticastUDP(t *testing.T) {
switch runtime.GOOS {
case "netbsd", "openbsd", "plan9", "windows":
return
case "linux":
if runtime.GOARCH == "arm" {
return
}
}
for _, tt := range listenMulticastUDPTests {