From: Michael Munday Date: Mon, 7 Nov 2016 16:50:48 +0000 (-0500) Subject: cmd/dist: enable more cgo tests on ppc64le X-Git-Tag: go1.8beta1~283 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4cc83d49d2a69bb9d348cb32d71ca34651aec3b5;p=gostls13.git cmd/dist: enable more cgo tests on ppc64le The tests all pass (for me at least) so I don't think there is any reason not to enable them. Change-Id: I96e71383e573273f442a849914cf6458ada14f82 Reviewed-on: https://go-review.googlesource.com/32855 Reviewed-by: Lynn Boger Reviewed-by: Ian Lance Taylor Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot --- diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index 7629547279..e7027a67cd 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -809,7 +809,7 @@ func (t *tester) cgoTest(dt *distTest) error { case "android-arm", "dragonfly-386", "dragonfly-amd64", "freebsd-386", "freebsd-amd64", "freebsd-arm", - "linux-386", "linux-amd64", "linux-arm", "linux-s390x", + "linux-386", "linux-amd64", "linux-arm", "linux-ppc64le", "linux-s390x", "netbsd-386", "netbsd-amd64": cmd := t.addCmd(dt, "misc/cgo/test", "go", "test", "-ldflags", "-linkmode=external")