We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c5e48 commit 9ece9a7Copy full SHA for 9ece9a7
src/cmd/cgo/internal/testshared/shared_test.go
@@ -731,6 +731,10 @@ func TestThreeGopathShlibs(t *testing.T) {
731
func requireGccgo(t *testing.T) {
732
t.Helper()
733
734
+ if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" {
735
+ t.Skip("gccgo test skipped on PPC64 until issue #60798 is resolved")
736
+ }
737
+
738
gccgoName := os.Getenv("GCCGO")
739
if gccgoName == "" {
740
gccgoName = "gccgo"
0 commit comments