Skip to content

Commit e7823d6

Browse files
binarycrusaderbradfitz
authored andcommitted
runtime: temporarily skip gdb python-related tests on solaris
Updates #20821 Change-Id: I77a5b9a3bbb931845ef52a479549d71069af9540 Reviewed-on: https://go-review.googlesource.com/46913 Run-TryBot: Shawn Walker-Salas <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent c991d2a commit e7823d6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/runtime/runtime-gdb_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ func checkGdbVersion(t *testing.T) {
5656
}
5757

5858
func checkGdbPython(t *testing.T) {
59+
if runtime.GOOS == "solaris" && testenv.Builder() != "solaris-amd64-smartosbuildlet" {
60+
t.Skip("skipping gdb python tests on solaris; see golang.org/issue/20821")
61+
}
62+
5963
cmd := exec.Command("gdb", "-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')")
6064
out, err := cmd.CombinedOutput()
6165

0 commit comments

Comments
 (0)