diff options
| author | Brad Fitzpatrick <bradfitz@golang.org> | 2016-10-06 19:06:49 +0000 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-10-06 19:52:09 +0000 |
| commit | 4103fedf199dbc80c11455ffe75e3ecf89c77da5 (patch) | |
| tree | c0be8a62fc24d4d986cdf923b3921ba1bc39303f /src/runtime/runtime-gdb_test.go | |
| parent | 7b4a2246670b4ec5a19214f8290fce21173f6b14 (diff) | |
| download | go-4103fedf199dbc80c11455ffe75e3ecf89c77da5.tar.xz | |
runtime: skip gdb tests on linux/ppc64 for now
Updates #17366
Change-Id: Ia4bd3c74c48b85f186586184a7c2b66d3b80fc9c
Reviewed-on: https://go-review.googlesource.com/30596
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: David Chase <drchase@google.com>
Diffstat (limited to 'src/runtime/runtime-gdb_test.go')
| -rw-r--r-- | src/runtime/runtime-gdb_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index bb2905cf7c..e7aaa27b03 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -23,6 +23,9 @@ func checkGdbEnvironment(t *testing.T) { if runtime.GOOS == "darwin" { t.Skip("gdb does not work on darwin") } + if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64" { + t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366") + } if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final { t.Skip("gdb test can fail with GOROOT_FINAL pending") } |
