diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-02-14 00:30:12 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-02-14 00:30:12 +0000 |
commit | 09578bcd52d81e43a11caac178ee78073a2eb6fc (patch) | |
tree | 27056e4d1c750a1db3a01cab15055b03b77e9f06 | |
parent | a6d3e197fbc0c384390c8a3e63273915719bcbed (diff) | |
download | gcc-09578bcd52d81e43a11caac178ee78073a2eb6fc.zip gcc-09578bcd52d81e43a11caac178ee78073a2eb6fc.tar.gz gcc-09578bcd52d81e43a11caac178ee78073a2eb6fc.tar.bz2 |
net: Don't run UDP multicast tests on Alpha GNU/Linux.
From Uros Bizjak.
From-SVN: r184187
-rw-r--r-- | libgo/go/net/multicast_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/net/multicast_test.go b/libgo/go/net/multicast_test.go index bf0fe4d..f62580d 100644 --- a/libgo/go/net/multicast_test.go +++ b/libgo/go/net/multicast_test.go @@ -33,7 +33,7 @@ func TestListenMulticastUDP(t *testing.T) { case "netbsd", "openbsd", "plan9", "windows": return case "linux": - if runtime.GOARCH == "arm" { + if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" { return } } |