From bfccf4071eb9401cb906b203659010f9422c524f Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 26 May 2016 15:02:55 -0400 Subject: [PATCH] cmd/dist: drop ppc64le from testcshared I'm glad my CL fixed the library use case inside Google. It fixes neither of the two tests here. Change-Id: Ica91722dced8955a0a8ba3aad3d288816b46564e Reviewed-on: https://go-review.googlesource.com/23482 Run-TryBot: Russ Cox Reviewed-by: Russ Cox --- src/cmd/dist/test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 69a13ddf9d..1a1f7d961b 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -688,8 +688,7 @@ func (t *tester) supportedBuildmode(mode string) bool { switch pair { case "linux-386", "linux-amd64", "linux-arm", "linux-arm64", "darwin-amd64", "darwin-386", - "android-arm", "android-arm64", "android-386", - "linux-ppc64le": + "android-arm", "android-arm64", "android-386": return true } return false -- 2.48.1