1
0
mirror of https://github.com/golang/go synced 2024-11-19 13:04:45 -07:00

cmd/addr2line: skip test on android

LGTM=minux
R=golang-codereviews, minux
CC=golang-codereviews
https://golang.org/cl/104600043
This commit is contained in:
David Crawshaw 2014-07-08 13:45:31 -04:00
parent 4e0214eb8e
commit 331bf64d17

View File

@ -92,8 +92,9 @@ func testAddr2Line(t *testing.T, exepath, addr string) {
// This is line 93. The test depends on that.
func TestAddr2Line(t *testing.T) {
if runtime.GOOS == "nacl" {
t.Skip("skipping on nacl")
switch runtime.GOOS {
case "nacl", "android":
t.Skipf("skipping on %s", runtime.GOOS)
}
syms := loadSyms(t)