mirror of https://github.com/golang/go.git
cmd/objdump: skip TestDisasmExtld on AIX
Fixes #42025. Change-Id: I34bed3364902e37df24ed6f56cddf163c7a4dc52 Reviewed-on: https://go-review.googlesource.com/c/go/+/263147 Trust: Cherry Zhang <cherryyz@google.com> Reviewed-by: Jeremy Faller <jeremy@golang.org> Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
parent
9cec50f50c
commit
3eae1a9058
|
|
@ -262,6 +262,8 @@ func TestDisasmExtld(t *testing.T) {
|
|||
switch runtime.GOOS {
|
||||
case "plan9", "windows":
|
||||
t.Skipf("skipping on %s", runtime.GOOS)
|
||||
case "aix":
|
||||
t.Skipf("skipping on AIX, see issue 40972")
|
||||
}
|
||||
t.Parallel()
|
||||
testDisasm(t, "fmthello.go", false, false, "-ldflags=-linkmode=external")
|
||||
|
|
|
|||
Loading…
Reference in New Issue