1
0
mirror of https://github.com/golang/go synced 2024-11-17 21:24:55 -07:00

cmd/addr2line: skip broken TestAddr2Line on plan9 (fixes build)

Update #7947

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/100180043
This commit is contained in:
Alex Brainman 2014-05-07 11:58:25 +10:00
parent 2702ad3806
commit 3b3e5ea460

View File

@ -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")