mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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 <gobot@golang.org> Auto-Submit: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Bryan Mills <bcmills@google.com>
This commit is contained in:
parent
f229787aff
commit
e9c2607ab4
1 changed files with 1 additions and 1 deletions
|
|
@ -782,7 +782,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", "android":
|
case "android", "darwin", "dragonfly", "freebsd", "ios", "linux", "netbsd", "openbsd":
|
||||||
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)")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue