Commit 04494f38 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: skip unixpacket tests on netbsd/386

Updates #22927
Updates #20852

Change-Id: I3ac0f8d38375d58a77781ab0e4f78ca57b258de0
Reviewed-on: https://go-review.googlesource.com/80756Reviewed-by: 's avatarBenny Siegert <bsiegert@gmail.com>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 9ec0c7ab
......@@ -44,6 +44,11 @@ func testableNetwork(network string) bool {
switch runtime.GOOS {
case "android", "darwin", "nacl", "plan9", "windows":
return false
case "netbsd":
// It passes on amd64 at least. 386 fails (Issue 22927). arm is unknown.
if runtime.GOARCH == "386" {
return false
}
}
}
switch ss[0] {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment