We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b4a224 commit 4103fedCopy full SHA for 4103fed
src/runtime/runtime-gdb_test.go
@@ -23,6 +23,9 @@ func checkGdbEnvironment(t *testing.T) {
23
if runtime.GOOS == "darwin" {
24
t.Skip("gdb does not work on darwin")
25
}
26
+ if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64" {
27
+ t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")
28
+ }
29
if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final {
30
t.Skip("gdb test can fail with GOROOT_FINAL pending")
31
0 commit comments