Commit fa81d613 authored by Austin Clements's avatar Austin Clements Committed by Brad Fitzpatrick

runtime: more specific reason for skipping GDB tests on NetBSD

Updates #22893.

Change-Id: I2cf5efb4fa6b77aaf82de5d8877c99f9aa5d519a
Reviewed-on: https://go-review.googlesource.com/81195
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent ff534e21
...@@ -26,7 +26,7 @@ func checkGdbEnvironment(t *testing.T) { ...@@ -26,7 +26,7 @@ func checkGdbEnvironment(t *testing.T) {
case "darwin": case "darwin":
t.Skip("gdb does not work on darwin") t.Skip("gdb does not work on darwin")
case "netbsd": case "netbsd":
t.Skip("test times out on NetBSD for unknown reasons; issue 22893") t.Skip("gdb does not work with threads on NetBSD; see golang.org/issue/22893 and gnats.netbsd.org/52548")
case "linux": case "linux":
if runtime.GOARCH == "ppc64" { if runtime.GOARCH == "ppc64" {
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366") t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment