diff --git a/misc/cgo/testcshared/cshared_test.go b/misc/cgo/testcshared/cshared_test.go index 7cc02f6194..e5b90ff194 100644 --- a/misc/cgo/testcshared/cshared_test.go +++ b/misc/cgo/testcshared/cshared_test.go @@ -604,10 +604,13 @@ func copyFile(t *testing.T, dst, src string) { } func TestGo2C2Go(t *testing.T) { - if GOOS == "darwin" { + switch GOOS { + case "darwin": // Darwin shared libraries don't support the multiple // copies of the runtime package implied by this test. t.Skip("linking c-shared into Go programs not supported on Darwin; issue 29061") + case "android": + t.Skip("test fails on android; issue 29087") } t.Parallel()