From: Alex Brainman Date: Sat, 22 Aug 2020 02:06:24 +0000 (+1000) Subject: cmd/objdump: skip cgo test in testGoAndCgoDisasm on AIX X-Git-Tag: go1.16beta1~1250 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=13e41bcde8c788224f4896503b56d42614e0bf97;p=gostls13.git cmd/objdump: skip cgo test in testGoAndCgoDisasm on AIX Updates #40972. Change-Id: Id2092f0bef4fb4bdc4178e7bc9730716136f7b8a Reviewed-on: https://go-review.googlesource.com/c/go/+/249760 Run-TryBot: Alex Brainman TryBot-Result: Gobot Gobot Reviewed-by: Dmitri Shuralyov --- diff --git a/src/cmd/objdump/objdump_test.go b/src/cmd/objdump/objdump_test.go index d9c1660ffd..85d1a2efb0 100644 --- a/src/cmd/objdump/objdump_test.go +++ b/src/cmd/objdump/objdump_test.go @@ -226,6 +226,9 @@ func testGoAndCgoDisasm(t *testing.T, printCode bool, printGnuAsm bool) { t.Parallel() testDisasm(t, "fmthello.go", printCode, printGnuAsm) if build.Default.CgoEnabled { + if runtime.GOOS == "aix" { + t.Skipf("skipping on %s, issue 40972", runtime.GOOS) + } testDisasm(t, "fmthellocgo.go", printCode, printGnuAsm) } }