Skip to content

Commit

Permalink
net: skip unixpacket tests on netbsd/386
Browse files Browse the repository at this point in the history
Updates #22927
Updates #20852

Change-Id: I3ac0f8d38375d58a77781ab0e4f78ca57b258de0
Reviewed-on: https://go-review.googlesource.com/80756
Reviewed-by: Benny Siegert <[email protected]>
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
bradfitz committed Nov 29, 2017
1 parent 9ec0c7a commit 04494f3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/net/platform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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] {
Expand Down

0 comments on commit 04494f3

Please sign in to comment.