Skip to content

Commit

Permalink
cmd/addr2line: skip broken TestAddr2Line on plan9 (fixes build)
Browse files Browse the repository at this point in the history
Update #7947

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/100180043
  • Loading branch information
alexbrainman committed May 7, 2014
1 parent 2702ad3 commit 3b3e5ea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cmd/addr2line/addr2line_test.go
Expand Up @@ -68,6 +68,9 @@ func runAddr2Line(t *testing.T, exepath, addr string) (funcname, path, lineno st
}

func TestAddr2Line(t *testing.T) {
if runtime.GOOS == "plan9" {
t.Skip("skipping test; see http://golang.org/issue/7947")
}
syms := loadSyms(t)

tmpDir, err := ioutil.TempDir("", "TestAddr2Line")
Expand Down

0 comments on commit 3b3e5ea

Please sign in to comment.