]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: disable gdb testpoints on alpine pending builder fix
authorThan McIntosh <thanm@google.com>
Tue, 9 Aug 2022 13:03:50 +0000 (09:03 -0400)
committerThan McIntosh <thanm@google.com>
Tue, 9 Aug 2022 14:12:01 +0000 (14:12 +0000)
Disable the TestGdb* testpoints until we can figure out why they are
failing and reconfigure the machine properly.

Updates #54352.

Change-Id: Id9c76a0ba6e23b5deff24f521a1c8e0aafb6481a
Reviewed-on: https://go-review.googlesource.com/c/go/+/422294
Reviewed-by: Cherry Mui <cherryyz@google.com>
Run-TryBot: Than McIntosh <thanm@google.com>

src/runtime/runtime-gdb_test.go

index d97c2a252460a46afc6f1b6b7ac55b1ca54b87c9..efc09c67e4534928baf7f22b0053cec3bdd37270 100644 (file)
@@ -40,6 +40,10 @@ func checkGdbEnvironment(t *testing.T) {
                if runtime.GOARCH == "mips" {
                        t.Skip("skipping gdb tests on linux/mips; see https://golang.org/issue/25939")
                }
+               // Disable GDB tests on alpine until issue #54352 resolved.
+               if strings.HasSuffix(testenv.Builder(), "-alpine") {
+                       t.Skip("skipping gdb tests on alpine; see https://golang.org/issue/54352")
+               }
        case "freebsd":
                t.Skip("skipping gdb tests on FreeBSD; see https://golang.org/issue/29508")
        case "aix":