From: Michael Hudson-Doyle Date: Mon, 13 Jul 2015 03:20:12 +0000 (+1200) Subject: cmd/dist: actually disable testso and testsovar on ppc64 X-Git-Tag: go1.5beta2~90 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=616cb3c0eadada458358d69b1098a5aea9165099;p=gostls13.git cmd/dist: actually disable testso and testsovar on ppc64 This is clearly what was intended all along. ./all.bash passes with this change. Change-Id: I16996da11cf1e4d2dc2a4434b7611a724691e8dc Reviewed-on: https://go-review.googlesource.com/12068 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 8d7b6f8807..0f2c9a6f6a 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -734,7 +734,7 @@ func (t *tester) cgoTestSOSupported() bool { // No exec facility on Android or iOS. return false } - if t.goos == "ppc64le" || t.goos == "ppc64" { + if t.goarch == "ppc64le" || t.goarch == "ppc64" { // External linking not implemented on ppc64 (issue #8912). return false }