]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: skip test using external linking on linux/ppc64 too
authorShenghou Ma <minux@golang.org>
Tue, 25 Aug 2015 01:17:04 +0000 (21:17 -0400)
committerMinux Ma <minux@golang.org>
Tue, 25 Aug 2015 01:33:25 +0000 (01:33 +0000)
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 <iant@golang.org>
src/cmd/go/go_test.go
src/cmd/go/note_test.go

index 77b2628982bb81675d07d2705017aa1dd7c1efe4..6ee9343eb4274fb936ef0faf73fd601ed8b1d56c 100644 (file)
@@ -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")
        }
index 3d644518c6897de348b57f8928f1b2e06b139769..2fcfe34d67e2ad849f4a8e600b71c821bd72cad9 100644 (file)
@@ -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")
        }