Skip to content

Commit

Permalink
cmd/go: skip test using external linking on linux/ppc64 too
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
minux committed Aug 25, 2015
1 parent 7ebaa43 commit b11c8b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/go/go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/go/note_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand Down

0 comments on commit b11c8b9

Please sign in to comment.