Commit a5eda13d authored by Russ Cox's avatar Russ Cox

runtime: disable TestGdbPython on ppc64

(issue #10017)

Change-Id: Ia1267dfdb4474247926a998e32d9c6520015757d
Reviewed-on: https://go-review.googlesource.com/6130Reviewed-by: 's avatarMinux Ma <minux@golang.org>
Reviewed-by: 's avatarAustin Clements <austin@google.com>
parent 77ccb16e
......@@ -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")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment