From d82256ac11762f9e5069d84065de89919c337d58 Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Sun, 8 Jul 2018 15:28:21 -0400 Subject: [PATCH] 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 --- src/runtime/crash_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)") }