Skip to content

Commit f69a6de

Browse files
committed
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>
1 parent ecbf908 commit f69a6de

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/runtime/runtime-gdb_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ func TestGdbPython(t *testing.T) {
8989
}
9090

9191
func TestGdbPythonCgo(t *testing.T) {
92+
if runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" {
93+
testenv.SkipFlaky(t, 18784)
94+
}
9295
testGdbPython(t, true)
9396
}
9497

0 commit comments

Comments
 (0)