Skip to content

Commit e6a9335

Browse files
Bryan C. Millsbradfitz
Bryan C. Mills
authored andcommitted
runtime: skip GDB tests on Windows
Updates #22687. Change-Id: Iedccd9d2416ae7150cd2febe81c8bc9493d8d65c Reviewed-on: https://go-review.googlesource.com/112915 Run-TryBot: Bryan C. Mills <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 9428023 commit e6a9335

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/runtime/runtime-gdb_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ func checkGdbEnvironment(t *testing.T) {
2727
t.Skip("gdb does not work on darwin")
2828
case "netbsd":
2929
t.Skip("gdb does not work with threads on NetBSD; see golang.org/issue/22893 and gnats.netbsd.org/52548")
30+
case "windows":
31+
t.Skip("gdb tests fail on Windows: https://golang.org/issue/22687")
3032
case "linux":
3133
if runtime.GOARCH == "ppc64" {
3234
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")

0 commit comments

Comments
 (0)