mirror of
https://github.com/golang/go
synced 2024-11-19 16:24: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:
parent
4e0214eb8e
commit
331bf64d17
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user