Skip to content

Commit

Permalink
cmd/go: skip consistent cgo build test on Solaris.
Browse files Browse the repository at this point in the history
See #13247.

Change-Id: I06636157028d98430eb29277c822270592907856
Reviewed-on: https://go-review.googlesource.com/19910
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
neild committed Feb 24, 2016
1 parent 0625fc8 commit 5888763
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cmd/go/go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2763,6 +2763,10 @@ func TestCgoConsistentResults(t *testing.T) {
if !canCgo {
t.Skip("skipping because cgo not enabled")
}
if runtime.GOOS == "solaris" {
// See https://golang.org/issue/13247
t.Skip("skipping because Solaris builds are known to be inconsistent; see #13247")
}

tg := testgo(t)
defer tg.cleanup()
Expand Down

0 comments on commit 5888763

Please sign in to comment.