Skip to content

Commit 5888763

Browse files
committed
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>
1 parent 0625fc8 commit 5888763

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/cmd/go/go_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2763,6 +2763,10 @@ func TestCgoConsistentResults(t *testing.T) {
27632763
if !canCgo {
27642764
t.Skip("skipping because cgo not enabled")
27652765
}
2766+
if runtime.GOOS == "solaris" {
2767+
// See https://golang.org/issue/13247
2768+
t.Skip("skipping because Solaris builds are known to be inconsistent; see #13247")
2769+
}
27662770

27672771
tg := testgo(t)
27682772
defer tg.cleanup()

0 commit comments

Comments
 (0)