Commit 43807e0f authored by Hiroshi Ioka's avatar Hiroshi Ioka Committed by Ian Lance Taylor

cmd/internal/goobj: skip tests on some $GOOS/arm

Updates #21817

Change-Id: I77ffaf8a7e54465a5b73691b896edcb20c29440f
Reviewed-on: https://go-review.googlesource.com/62351Reviewed-by: default avatarDavid du Colombier <0intro@gmail.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 04212a16
...@@ -27,8 +27,12 @@ func TestMain(m *testing.M) { ...@@ -27,8 +27,12 @@ func TestMain(m *testing.M) {
return return
} }
if runtime.GOOS == "linux" && runtime.GOARCH == "arm" { if runtime.GOARCH == "arm" {
return // skip tests due to #19811 switch runtime.GOOS {
case "darwin", "android", "nacl":
default:
return // skip tests due to #19811
}
} }
if err := buildGoobj(); err != nil { if err := buildGoobj(); err != nil {
......
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