Skip to content

Commit d960de0

Browse files
jclulowbradfitz
authored andcommitted
runtime: temporarily skip gdb python-related tests on illumos
Updates #20821 Change-Id: I186356a78ac385a15b4604e0ea6110c4c212ebc4 Reviewed-on: https://go-review.googlesource.com/c/go/+/202357 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 3b0aa54 commit d960de0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/runtime-gdb_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ func checkGdbVersion(t *testing.T) {
6666
}
6767

6868
func checkGdbPython(t *testing.T) {
69-
if runtime.GOOS == "solaris" && testenv.Builder() != "solaris-amd64-smartosbuildlet" {
70-
t.Skip("skipping gdb python tests on solaris; see golang.org/issue/20821")
69+
if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
70+
t.Skip("skipping gdb python tests on illumos and solaris; see golang.org/issue/20821")
7171
}
7272

7373
cmd := exec.Command("gdb", "-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')")

0 commit comments

Comments
 (0)