1
0
mirror of https://github.com/golang/go synced 2024-09-25 05:10:12 -06:00

cmd/go: skip consistent cgo build test on Solaris.

See #13247.

Change-Id: I06636157028d98430eb29277c822270592907856
Reviewed-on: https://go-review.googlesource.com/19910
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Damien Neil 2016-02-24 15:18:41 -08:00
parent 0625fc8e82
commit 5888763428

View File

@ -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()