diff --git a/src/runtime/crash_test.go b/src/runtime/crash_test.go index 892a56355a..ffd99f3a87 100644 --- a/src/runtime/crash_test.go +++ b/src/runtime/crash_test.go @@ -795,6 +795,9 @@ func TestG0StackOverflow(t *testing.T) { if runtime.GOOS == "ios" { testenv.SkipFlaky(t, 62671) } + if runtime.GOOS == "windows" && runtime.GOARCH == "arm64" { + testenv.SkipFlaky(t, 63938) // TODO(cherry): fix and unskip + } if os.Getenv("TEST_G0_STACK_OVERFLOW") != "1" { cmd := testenv.CleanCmdEnv(testenv.Command(t, os.Args[0], "-test.run=^TestG0StackOverflow$", "-test.v"))