Updates #21817
Change-Id: I77ffaf8a7e54465a5b73691b896edcb20c29440f
Reviewed-on: https://go-review.googlesource.com/62351
Reviewed-by: David du Colombier <0intro@gmail.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
return
}
- if runtime.GOOS == "linux" && runtime.GOARCH == "arm" {
- return // skip tests due to #19811
+ if runtime.GOARCH == "arm" {
+ switch runtime.GOOS {
+ case "darwin", "android", "nacl":
+ default:
+ return // skip tests due to #19811
+ }
}
if err := buildGoobj(); err != nil {