Skip to content

Commit 9ece9a7

Browse files
committed
cmd/cgo/internal/testshared: disable gccgo tests on PPC64
Disable PPC64 gccgo tests until issue #60798 is fixed in gcc. Change-Id: I4d330e3d0ab6d4174ee6d8ff2cbedf53c8c4e3d9 Reviewed-on: https://go-review.googlesource.com/c/go/+/504095 Reviewed-by: Ian Lance Taylor <[email protected]> Run-TryBot: Paul Murphy <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Bryan Mills <[email protected]>
1 parent 23c5e48 commit 9ece9a7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/cmd/cgo/internal/testshared/shared_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,10 @@ func TestThreeGopathShlibs(t *testing.T) {
731731
func requireGccgo(t *testing.T) {
732732
t.Helper()
733733

734+
if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" {
735+
t.Skip("gccgo test skipped on PPC64 until issue #60798 is resolved")
736+
}
737+
734738
gccgoName := os.Getenv("GCCGO")
735739
if gccgoName == "" {
736740
gccgoName = "gccgo"

0 commit comments

Comments
 (0)