]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip gdb tests on linux/ppc64 for now
authorBrad Fitzpatrick <bradfitz@golang.org>
Thu, 6 Oct 2016 19:06:49 +0000 (19:06 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 6 Oct 2016 19:52:09 +0000 (19:52 +0000)
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>
src/runtime/runtime-gdb_test.go

index bb2905cf7c0364b77c1dfc2d031180b491e2c376..e7aaa27b038d596e82dfdb39ecde4e6aa4d6772d 100644 (file)
@@ -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")
        }