aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime-gdb_test.go
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2018-05-11 18:11:51 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2018-05-11 23:11:53 +0000
commite6a9335c7fbdcfbf5fd715ffe73873cd391368df (patch)
treee0e06b3ca3109bc659c07013c0d8e7534a0b537b /src/runtime/runtime-gdb_test.go
parent94280237f4863db90e442481c5cc4edfd13389a9 (diff)
downloadgo-e6a9335c7fbdcfbf5fd715ffe73873cd391368df.tar.gz
go-e6a9335c7fbdcfbf5fd715ffe73873cd391368df.zip
runtime: skip GDB tests on Windows
Updates #22687. Change-Id: Iedccd9d2416ae7150cd2febe81c8bc9493d8d65c Reviewed-on: https://go-review.googlesource.com/112915 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/runtime-gdb_test.go')
-rw-r--r--src/runtime/runtime-gdb_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go
index a6dfd64abc..79f9cb3538 100644
--- a/src/runtime/runtime-gdb_test.go
+++ b/src/runtime/runtime-gdb_test.go
@@ -27,6 +27,8 @@ func checkGdbEnvironment(t *testing.T) {
t.Skip("gdb does not work on darwin")
case "netbsd":
t.Skip("gdb does not work with threads on NetBSD; see golang.org/issue/22893 and gnats.netbsd.org/52548")
+ case "windows":
+ t.Skip("gdb tests fail on Windows: https://golang.org/issue/22687")
case "linux":
if runtime.GOARCH == "ppc64" {
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")