]> Cypherpunks.ru repositories - gostls13.git/commitdiff
runtime: skip TestG0StackOverflow on windows/arm64
authorCherry Mui <cherryyz@google.com>
Thu, 9 Nov 2023 18:28:14 +0000 (13:28 -0500)
committerCherry Mui <cherryyz@google.com>
Thu, 9 Nov 2023 19:24:24 +0000 (19:24 +0000)
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 <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Cherry Mui <cherryyz@google.com>

src/runtime/crash_test.go

index 892a56355ace7c43e541df4e7c817e013ac11de4..ffd99f3a87b75a31851ce606a91610ef835618b6 100644 (file)
@@ -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"))