From: Richard Miller Date: Tue, 31 Mar 2020 18:44:19 +0000 (+0100) Subject: runtime: skip gdb tests on Plan 9 X-Git-Tag: go1.15beta1~703 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2cb80bdee0dcb4ff55f46ab7025a37546aef6b7a;p=gostls13.git runtime: skip gdb tests on Plan 9 There's no gdb on Plan 9. Change-Id: Ibeb0fbd3c096a69181c19b1fb2bc6291612b6da3 Reviewed-on: https://go-review.googlesource.com/c/go/+/226657 Reviewed-by: David du Colombier <0intro@gmail.com> --- diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index 79b4621614..5dbe4bf88a 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -41,6 +41,8 @@ func checkGdbEnvironment(t *testing.T) { if testing.Short() { t.Skip("skipping gdb tests on AIX; see https://golang.org/issue/35710") } + case "plan9": + t.Skip("there is no gdb on Plan 9") } if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final { t.Skip("gdb test can fail with GOROOT_FINAL pending")