Revert "cmd/go: re-enable TestCgoConsistentResults on solaris"

This reverts commit b89bcc1dae.

Change-Id: Ief2f317ffc175f7e6002d0c39694876f46788c69
Reviewed-on: https://go-review.googlesource.com/23744
Reviewed-by: Mikio Hara <mikioh.mikioh@gmail.com>
This commit is contained in:
Mikio Hara 2016-06-04 07:33:28 +09:00
parent b89bcc1dae
commit 0326e28f17
1 changed files with 4 additions and 0 deletions

View File

@ -2778,6 +2778,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()