aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime-gdb_test.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2017-11-30 15:14:51 -0500
committerBrad Fitzpatrick <bradfitz@golang.org>2017-11-30 20:57:03 +0000
commitfa81d6134db1f93611263dea08c3e146ce5f5afe (patch)
treec22a8f485d9dece893841b233c3c8c1449d1027e /src/runtime/runtime-gdb_test.go
parentff534e2130f4ab0f297bb08d66b082878483bfc1 (diff)
downloadgo-fa81d6134db1f93611263dea08c3e146ce5f5afe.tar.gz
go-fa81d6134db1f93611263dea08c3e146ce5f5afe.zip
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: 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, 1 insertions, 1 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go
index 91edc4dda1..1a70a5d7a1 100644
--- a/src/runtime/runtime-gdb_test.go
+++ b/src/runtime/runtime-gdb_test.go
@@ -26,7 +26,7 @@ func checkGdbEnvironment(t *testing.T) {
case "darwin":
t.Skip("gdb does not work on darwin")
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":
if runtime.GOARCH == "ppc64" {
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")