Skip to content

Commit 973feb4

Browse files
committed
cmd/gomobile: skip TestWriter
TestWriter is flaky and often fails on the trybots. Skip this as a tentative solution. Updates golang/go#40290 Change-Id: I3a8aa74fb6cb727a216da4046edaa159f9aa2dc3 Reviewed-on: https://go-review.googlesource.com/c/mobile/+/243839 Run-TryBot: Hajime Hoshi <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent bcce011 commit 973feb4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmd/gomobile/writer_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ import (
1515
)
1616

1717
func TestWriter(t *testing.T) {
18+
if os.Getenv("GO_BUILDER_NAME") == "linux-amd64-androidemu" {
19+
t.Skip("skipping on linux-amd64-androidemu builder; see golang.org/issue/40290")
20+
}
21+
1822
block, _ := pem.Decode([]byte(debugCert))
1923
if block == nil {
2024
t.Fatal("no cert")

0 commit comments

Comments
 (0)