aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime-gdb_test.go
diff options
context:
space:
mode:
authorHeschi Kreinick <heschi@google.com>2018-06-18 17:09:37 -0400
committerHeschi Kreinick <heschi@google.com>2018-06-18 22:03:17 +0000
commit17a4e0475da1237168c4c14dd18af4ebe0d4b3d1 (patch)
tree313d0506970408a7bc11b10a380002ef8ff3fbd9 /src/runtime/runtime-gdb_test.go
parent88b442f5c08a2984e6800e83a483a6c7f4b24cd1 (diff)
downloadgo-17a4e0475da1237168c4c14dd18af4ebe0d4b3d1.tar.gz
go-17a4e0475da1237168c4c14dd18af4ebe0d4b3d1.zip
runtime: skip gdb tests on mips after DWARF compression
DWARF compression appears to break GDB on mips for reasons unknown. Skip the GDB tests there. Fixes #25939. Change-Id: Id76860d3a2ff8055999ac12ea891c37565bb6685 Reviewed-on: https://go-review.googlesource.com/119539 Run-TryBot: Heschi Kreinick <heschi@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/runtime/runtime-gdb_test.go')
-rw-r--r--src/runtime/runtime-gdb_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go
index 3f936b15b3..4733efba6d 100644
--- a/src/runtime/runtime-gdb_test.go
+++ b/src/runtime/runtime-gdb_test.go
@@ -33,6 +33,9 @@ func checkGdbEnvironment(t *testing.T) {
if runtime.GOARCH == "ppc64" {
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")
}
+ if runtime.GOARCH == "mips" {
+ t.Skip("skipping gdb tests on linux/mips; see https://golang.org/issue/25939")
+ }
}
if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final {
t.Skip("gdb test can fail with GOROOT_FINAL pending")