From: Shenghou Ma Date: Tue, 25 Aug 2015 01:17:04 +0000 (-0400) Subject: cmd/go: skip test using external linking on linux/ppc64 too X-Git-Tag: go1.6beta1~1280 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b11c8b9370b6156fec4510bf00ce956aa77ae8a4;p=gostls13.git cmd/go: skip test using external linking on linux/ppc64 too While we're at it, also fix a typo. Change-Id: Id436f33cffa5683e2a8450cce5b545960cf2877e Reviewed-on: https://go-review.googlesource.com/13878 Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/go/go_test.go b/src/cmd/go/go_test.go index 77b2628982..6ee9343eb4 100644 --- a/src/cmd/go/go_test.go +++ b/src/cmd/go/go_test.go @@ -671,7 +671,7 @@ func TestGoBuildDashAInDevBranch(t *testing.T) { tg.grepStderr("runtime", "testgo build -a math in dev branch DID NOT build runtime, but should have") } -func TestGoBuilDashAInReleaseBranch(t *testing.T) { +func TestGoBuildDashAInReleaseBranch(t *testing.T) { if testing.Short() { t.Skip("don't rebuild the standard library in short mode") } diff --git a/src/cmd/go/note_test.go b/src/cmd/go/note_test.go index 3d644518c6..2fcfe34d67 100644 --- a/src/cmd/go/note_test.go +++ b/src/cmd/go/note_test.go @@ -24,7 +24,7 @@ func TestNoteReading(t *testing.T) { t.Fatalf("buildID in hello binary = %q, want %q", id, buildID) } - if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" { + if runtime.GOOS == "linux" && (runtime.GOARCH == "ppc64le" || runtime.GOARCH == "ppc64") { t.Skipf("skipping - golang.org/issue/11184") }