Commit d82256ac authored by Austin Clements's avatar Austin Clements Committed by Ian Lance Taylor

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 <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 5cb1b177
...@@ -702,7 +702,7 @@ func TestG0StackOverflow(t *testing.T) { ...@@ -702,7 +702,7 @@ func TestG0StackOverflow(t *testing.T) {
testenv.MustHaveExec(t) testenv.MustHaveExec(t)
switch runtime.GOOS { 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)") t.Skipf("g0 stack is wrong on pthread platforms (see golang.org/issue/26061)")
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment