Commit d0bcdd3f authored by David Crawshaw's avatar David Crawshaw

cmd/addr2line: exclude Go tool test on darwin/arm

Change-Id: Icee6c88b7eed5fb27f046373ecf53bf64b68c696
Reviewed-on: https://go-review.googlesource.com/6191Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent be709049
......@@ -95,6 +95,10 @@ func TestAddr2Line(t *testing.T) {
switch runtime.GOOS {
case "nacl", "android":
t.Skipf("skipping on %s", runtime.GOOS)
case "darwin":
if runtime.GOARCH == "arm" {
t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
}
}
syms := loadSyms(t)
......
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