Skip to content

Commit d82256a

Browse files
aclementsianlancetaylor
authored andcommitted
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 5cb1b17 commit d82256a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/crash_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ func TestG0StackOverflow(t *testing.T) {
702702
testenv.MustHaveExec(t)
703703

704704
switch runtime.GOOS {
705-
case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd":
705+
case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "android":
706706
t.Skipf("g0 stack is wrong on pthread platforms (see golang.org/issue/26061)")
707707
}
708708

0 commit comments

Comments
 (0)