]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip flaky TestGdbPythonCgo on MIPS
authorCherry Zhang <cherryyz@google.com>
Thu, 2 Feb 2017 21:00:26 +0000 (16:00 -0500)
committerCherry Zhang <cherryyz@google.com>
Thu, 2 Feb 2017 21:45:42 +0000 (21:45 +0000)
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>

src/runtime/runtime-gdb_test.go

index f886961d6ad3dad94e7f2ac1d613cd75c092a79f..5f33ebf91c357eb3c6986fa35ce03b5f66f3a57c 100644 (file)
@@ -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)
 }