mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00: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
1 changed files with 4 additions and 0 deletions
|
|
@ -56,6 +56,10 @@ func checkGdbVersion(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func checkGdbPython(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')")
|
cmd := exec.Command("gdb", "-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')")
|
||||||
out, err := cmd.CombinedOutput()
|
out, err := cmd.CombinedOutput()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue