mirror of https://github.com/golang/go.git
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:
parent
be7090498b
commit
d0bcdd3f6a
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue