1
0
mirror of https://github.com/golang/go synced 2024-10-01 03:18:33 -06:00

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

Change-Id: Icee6c88b7eed5fb27f046373ecf53bf64b68c696
Reviewed-on: https://go-review.googlesource.com/6191
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
David Crawshaw 2015-02-26 17:52:51 -05:00
parent be7090498b
commit d0bcdd3f6a

View File

@ -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)