We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c05fceb commit d516aa6Copy full SHA for d516aa6
src/runtime/crash_test.go
@@ -792,6 +792,10 @@ func TestRuntimePanic(t *testing.T) {
792
func TestG0StackOverflow(t *testing.T) {
793
testenv.MustHaveExec(t)
794
795
+ if runtime.GOOS == "ios" {
796
+ testenv.SkipFlaky(t, 62671)
797
+ }
798
+
799
if os.Getenv("TEST_G0_STACK_OVERFLOW") != "1" {
800
cmd := testenv.CleanCmdEnv(exec.Command(os.Args[0], "-test.run=^TestG0StackOverflow$", "-test.v"))
801
cmd.Env = append(cmd.Env, "TEST_G0_STACK_OVERFLOW=1")
0 commit comments