From: David Crawshaw Date: Fri, 16 Sep 2016 21:10:44 +0000 (-0400) Subject: cmd/dist: disable plugin test on ppc64le and s390x X-Git-Tag: go1.8beta1~1262 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fb4e49059c28fc2de64f0c1b83b178f4bede4a75;p=gostls13.git cmd/dist: disable plugin test on ppc64le and s390x These are close to working, but untested and failing on build.golang.org. So disable for now. Change-Id: I330b8d1a91f0bf5139c894913868f01ec87e986d Reviewed-on: https://go-review.googlesource.com/29359 Reviewed-by: Brad Fitzpatrick Reviewed-by: Keith Randall Run-TryBot: David Crawshaw TryBot-Result: Gobot Gobot --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 4a1aa2ece2..779140f446 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -729,7 +729,7 @@ func (t *tester) supportedBuildmode(mode string) bool { return false case "plugin": switch pair { - case "linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-ppc64le", "linux-s390x": + case "linux-386", "linux-amd64", "linux-arm", "linux-arm64": return true } return false