From: Cherry Mui Date: Thu, 9 Nov 2023 18:28:14 +0000 (-0500) Subject: runtime: skip TestG0StackOverflow on windows/arm64 X-Git-Tag: go1.22rc1~366 X-Git-Url: http://www.git.cypherpunks.ru/?a=commitdiff_plain;h=bd7d757e91181a0a4be26032b6d6d7fc79c85acc;hp=3aa2823d8b2c96d01980cca277f6cf7923db229f;p=gostls13.git runtime: skip TestG0StackOverflow on windows/arm64 Temporarily skip to make the builder happy. Will work on a fix. Updates #63938. Change-Id: Ic9db771342108430c29774b2c3e50043791189a6 Reviewed-on: https://go-review.googlesource.com/c/go/+/541195 LUCI-TryBot-Result: Go LUCI Reviewed-by: Heschi Kreinick TryBot-Result: Gopher Robot Run-TryBot: Cherry Mui --- 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"))