Skip to content

Commit e9c2607

Browse files
Bryan C. Millsgopherbot
Bryan C. Mills
authored andcommitted
runtime: skip TestG0StackOverflow on ios
This test fails when run on ios. (Although ios does not normally support "exec", in the corellium environment it does.) For #26061. Change-Id: Idfdc53758aaabf0cb87ae50f9a4666deebf57fd6 Reviewed-on: https://go-review.googlesource.com/c/go/+/487355 TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Bryan Mills <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Run-TryBot: Bryan Mills <[email protected]>
1 parent f229787 commit e9c2607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/crash_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ func TestG0StackOverflow(t *testing.T) {
782782
testenv.MustHaveExec(t)
783783

784784
switch runtime.GOOS {
785-
case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "android":
785+
case "android", "darwin", "dragonfly", "freebsd", "ios", "linux", "netbsd", "openbsd":
786786
t.Skipf("g0 stack is wrong on pthread platforms (see golang.org/issue/26061)")
787787
}
788788

0 commit comments

Comments
 (0)