]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip gdb tests on Plan 9
authorRichard Miller <miller.research@gmail.com>
Tue, 31 Mar 2020 18:44:19 +0000 (19:44 +0100)
committerDavid du Colombier <0intro@gmail.com>
Tue, 31 Mar 2020 19:12:33 +0000 (19:12 +0000)
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>
src/runtime/runtime-gdb_test.go

index 79b4621614e18aa3be242933a83d015d585c7b94..5dbe4bf88a921d4ab7b0b12ecd4c3f091103f8f5 100644 (file)
@@ -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")