mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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>
This commit is contained in:
parent
3a0d6091d6
commit
85525c56ab
7 changed files with 11 additions and 18 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue