mirror of https://github.com/golang/go.git
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 <iant@google.com> Run-TryBot: Paul Murphy <murp@ibm.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com>
This commit is contained in:
parent
23c5e48c4a
commit
9ece9a7ac9
|
|
@ -731,6 +731,10 @@ func TestThreeGopathShlibs(t *testing.T) {
|
||||||
func requireGccgo(t *testing.T) {
|
func requireGccgo(t *testing.T) {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
|
|
||||||
|
if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" {
|
||||||
|
t.Skip("gccgo test skipped on PPC64 until issue #60798 is resolved")
|
||||||
|
}
|
||||||
|
|
||||||
gccgoName := os.Getenv("GCCGO")
|
gccgoName := os.Getenv("GCCGO")
|
||||||
if gccgoName == "" {
|
if gccgoName == "" {
|
||||||
gccgoName = "gccgo"
|
gccgoName = "gccgo"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue