mirror of
https://github.com/golang/go
synced 2024-11-18 00:44:47 -07:00
runtime: temporarily skip gdb python-related tests on illumos
Updates golang/go#20821 Change-Id: I186356a78ac385a15b4604e0ea6110c4c212ebc4 Reviewed-on: https://go-review.googlesource.com/c/go/+/202357 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
3b0aa546d2
commit
d960de0b6f
@ -66,8 +66,8 @@ func checkGdbVersion(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func checkGdbPython(t *testing.T) {
|
func checkGdbPython(t *testing.T) {
|
||||||
if runtime.GOOS == "solaris" && testenv.Builder() != "solaris-amd64-smartosbuildlet" {
|
if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
|
||||||
t.Skip("skipping gdb python tests on solaris; see golang.org/issue/20821")
|
t.Skip("skipping gdb python tests on illumos and 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')")
|
||||||
|
Loading…
Reference in New Issue
Block a user