aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime-gdb_test.go
diff options
context:
space:
mode:
authorCherry Zhang <cherryyz@google.com>2017-02-02 16:00:26 -0500
committerCherry Zhang <cherryyz@google.com>2017-02-02 21:45:42 +0000
commitf69a6defd1da6509b8f0f54f9ae60e4bf740891d (patch)
tree95b5f32dcfd0e969ccb3a49a866f71bb1bcb1afe /src/runtime/runtime-gdb_test.go
parentecbf90840471a8cd5500c90baea7a60a65b14b10 (diff)
downloadgo-f69a6defd1da6509b8f0f54f9ae60e4bf740891d.tar.xz
runtime: skip flaky TestGdbPythonCgo on MIPS
It seems the problem is on gdb and the dynamic linker. Skip the test for now until we figure out what's going on with the system. Updates #18784. Change-Id: Ic9320ffd463f6c231b2c4192652263b1cf7f4231 Reviewed-on: https://go-review.googlesource.com/36250 Run-TryBot: Cherry Zhang <cherryyz@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
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 f886961d6a..5f33ebf91c 100644
--- a/src/runtime/runtime-gdb_test.go
+++ b/src/runtime/runtime-gdb_test.go
@@ -89,6 +89,9 @@ func TestGdbPython(t *testing.T) {
}
func TestGdbPythonCgo(t *testing.T) {
+ if runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" {
+ testenv.SkipFlaky(t, 18784)
+ }
testGdbPython(t, true)
}