Commit 331bf64d authored by David Crawshaw's avatar David Crawshaw

cmd/addr2line: skip test on android

LGTM=minux
R=golang-codereviews, minux
CC=golang-codereviews
https://golang.org/cl/104600043
parent 4e0214eb
...@@ -92,8 +92,9 @@ func testAddr2Line(t *testing.T, exepath, addr string) { ...@@ -92,8 +92,9 @@ func testAddr2Line(t *testing.T, exepath, addr string) {
// This is line 93. The test depends on that. // This is line 93. The test depends on that.
func TestAddr2Line(t *testing.T) { func TestAddr2Line(t *testing.T) {
if runtime.GOOS == "nacl" { switch runtime.GOOS {
t.Skip("skipping on nacl") case "nacl", "android":
t.Skipf("skipping on %s", runtime.GOOS)
} }
syms := loadSyms(t) 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