Commit d960de0b authored by Joshua M. Clulow's avatar Joshua M. Clulow Committed by Brad Fitzpatrick

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/+/202357Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 3b0aa546
...@@ -66,8 +66,8 @@ func checkGdbVersion(t *testing.T) { ...@@ -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')")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment