Skip to content

Commit d516aa6

Browse files
committed
runtime: skip TestG0StackOverflow on iOS
Apparently it falls into infinite printing loop. Skipping for now. Will investigate. For #62671. Change-Id: I5be8e8c1d0f4f2eaa231d6bcdfe13e7f08c28b98 Reviewed-on: https://go-review.googlesource.com/c/go/+/528403 Reviewed-by: Bryan Mills <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Run-TryBot: Bryan Mills <[email protected]>
1 parent c05fceb commit d516aa6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/runtime/crash_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,10 @@ func TestRuntimePanic(t *testing.T) {
792792
func TestG0StackOverflow(t *testing.T) {
793793
testenv.MustHaveExec(t)
794794

795+
if runtime.GOOS == "ios" {
796+
testenv.SkipFlaky(t, 62671)
797+
}
798+
795799
if os.Getenv("TEST_G0_STACK_OVERFLOW") != "1" {
796800
cmd := testenv.CleanCmdEnv(exec.Command(os.Args[0], "-test.run=^TestG0StackOverflow$", "-test.v"))
797801
cmd.Env = append(cmd.Env, "TEST_G0_STACK_OVERFLOW=1")

0 commit comments

Comments
 (0)