From: Clément Chigot Date: Wed, 20 Nov 2019 12:57:24 +0000 (+0100) Subject: runtime: disable GDB tests on AIX with -short X-Git-Tag: go1.14beta1~143 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9c6f6409ada8737bf159e7e8eb952f0541e89860;p=gostls13.git runtime: disable GDB tests on AIX with -short Since the new page allocator, AIX's GDB has trouble running Go programs. It does work but it can be really slow. Therefore, they are disable when tests are run with -short. Updates: #35710 Change-Id: Ibfc4bd2cd9714268f1fe172aaf32a73612e262d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/207919 Run-TryBot: Ian Lance Taylor Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index 8cbc7638ca..79b4621614 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -37,6 +37,10 @@ func checkGdbEnvironment(t *testing.T) { } case "freebsd": t.Skip("skipping gdb tests on FreeBSD; see https://golang.org/issue/29508") + case "aix": + if testing.Short() { + t.Skip("skipping gdb tests on AIX; see https://golang.org/issue/35710") + } } if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final { t.Skip("gdb test can fail with GOROOT_FINAL pending")