Skip to content

Commit

Permalink
net: disable normal multicast testing on linux/arm
Browse files Browse the repository at this point in the history
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5603043
  • Loading branch information
cixtor committed Jan 31, 2012
1 parent 2cc3351 commit 847197d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pkg/net/multicast_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 847197d

Please sign in to comment.