mirror of
https://github.com/golang/go
synced 2024-11-18 21:05:02 -07: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:
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
Block a user