1
0
mirror of https://github.com/golang/go synced 2024-09-30 04:34:33 -06: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:
Joshua M. Clulow 2019-10-21 01:45:43 -07:00 committed by Brad Fitzpatrick
parent 3b0aa546d2
commit d960de0b6f

View File

@ -66,8 +66,8 @@ 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")
if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
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')")