Commit 58887634 authored by Damien Neil's avatar Damien Neil

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

See #13247.

Change-Id: I06636157028d98430eb29277c822270592907856
Reviewed-on: https://go-review.googlesource.com/19910Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 0625fc8e
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment