Skip to content

Commit 4103fed

Browse files
committed
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: David Chase <[email protected]>
1 parent 7b4a224 commit 4103fed

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/runtime/runtime-gdb_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ func checkGdbEnvironment(t *testing.T) {
2323
if runtime.GOOS == "darwin" {
2424
t.Skip("gdb does not work on darwin")
2525
}
26+
if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64" {
27+
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")
28+
}
2629
if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final {
2730
t.Skip("gdb test can fail with GOROOT_FINAL pending")
2831
}

0 commit comments

Comments
 (0)