mirror of
https://github.com/golang/go
synced 2024-11-26 20:11:26 -07:00
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 <shawn.walker@oracle.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
c991d2ab14
commit
e7823d656e
@ -56,6 +56,10 @@ func checkGdbVersion(t *testing.T) {
|
||||
}
|
||||
|
||||
func checkGdbPython(t *testing.T) {
|
||||
if runtime.GOOS == "solaris" && testenv.Builder() != "solaris-amd64-smartosbuildlet" {
|
||||
t.Skip("skipping gdb python tests on solaris; see golang.org/issue/20821")
|
||||
}
|
||||
|
||||
cmd := exec.Command("gdb", "-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')")
|
||||
out, err := cmd.CombinedOutput()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user