aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime-gdb_test.go
diff options
context:
space:
mode:
authorClément Chigot <clement.chigot@atos.net>2018-11-02 10:09:30 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2018-11-02 16:12:08 +0000
commit85525c56ab5fdb214fee70b4b4cce8700344258b (patch)
tree03269d4c3ada020b50f570b445913dd4390bb350 /src/runtime/runtime-gdb_test.go
parent3a0d6091d64f0204d0942764d3356ac0572be0e3 (diff)
downloadgo-85525c56ab5fdb214fee70b4b4cce8700344258b.tar.gz
go-85525c56ab5fdb214fee70b4b4cce8700344258b.zip
all: skip unsupported tests on AIX
This commit skips tests which aren't yet supported on AIX. nosplit.go is disabled because stackGuardMultiplier is increased for syscalls. Change-Id: Ib5ff9a4539c7646bcb6caee159f105ff8a160ad7 Reviewed-on: https://go-review.googlesource.com/c/146939 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/runtime-gdb_test.go')
-rw-r--r--src/runtime/runtime-gdb_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go
index 7672e45b03..5d35813708 100644
--- a/src/runtime/runtime-gdb_test.go
+++ b/src/runtime/runtime-gdb_test.go
@@ -36,6 +36,8 @@ func checkGdbEnvironment(t *testing.T) {
if runtime.GOARCH == "mips" {
t.Skip("skipping gdb tests on linux/mips; see https://golang.org/issue/25939")
}
+ case "aix":
+ t.Skip("gdb does not work on AIX; see golang.org/issue/28558")
}
if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final {
t.Skip("gdb test can fail with GOROOT_FINAL pending")