From: Austin Clements Date: Sun, 8 Jul 2018 19:28:21 +0000 (-0400) Subject: runtime: skip TestG0StackOverflow on Android X-Git-Tag: go1.11beta2~190 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d82256ac11762f9e5069d84065de89919c337d58;p=gostls13.git runtime: skip TestG0StackOverflow on Android This test is skipped on Linux and should be skipped on Android for the same reason. Change-Id: I753c4788d935bd58874554b455c0d5be2315b794 Reviewed-on: https://go-review.googlesource.com/122585 Run-TryBot: Austin Clements TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/crash_test.go b/src/runtime/crash_test.go index 5c255efd26..2766b8850a 100644 --- a/src/runtime/crash_test.go +++ b/src/runtime/crash_test.go @@ -702,7 +702,7 @@ func TestG0StackOverflow(t *testing.T) { testenv.MustHaveExec(t) switch runtime.GOOS { - case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd": + case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "android": t.Skipf("g0 stack is wrong on pthread platforms (see golang.org/issue/26061)") }