From: Russ Cox Date: Thu, 26 Feb 2015 19:30:40 +0000 (-0500) Subject: runtime: disable TestGdbPython on ppc64 X-Git-Tag: go1.5beta1~1845 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a5eda13d20405c659203db34f6d30942ca67fb96;p=gostls13.git runtime: disable TestGdbPython on ppc64 (issue #10017) Change-Id: Ia1267dfdb4474247926a998e32d9c6520015757d Reviewed-on: https://go-review.googlesource.com/6130 Reviewed-by: Minux Ma Reviewed-by: Austin Clements --- diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index da15835db0..36c96ac1c8 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -9,6 +9,7 @@ import ( "path/filepath" "regexp" "runtime" + "strings" "testing" ) @@ -42,6 +43,9 @@ func TestGdbPython(t *testing.T) { if runtime.GOOS == "darwin" { t.Skip("gdb does not work on darwin") } + if strings.HasPrefix(runtime.GOARCH, "ppc64") { + t.Skip("gdb does not work on ppc64 - issue 10017") + } if runtime.GOOS == "linux" && runtime.GOARCH == "arm" { t.Skip("issue 10002")