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:
parent
2702ad3806
commit
3b3e5ea460
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user