aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_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/crash_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/crash_test.go')
-rw-r--r--src/runtime/crash_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/crash_test.go b/src/runtime/crash_test.go
index 6835cacb3f..6fba4dd91a 100644
--- a/src/runtime/crash_test.go
+++ b/src/runtime/crash_test.go
@@ -623,6 +623,9 @@ func TestBadTraceback(t *testing.T) {
}
func TestTimePprof(t *testing.T) {
+ if runtime.GOOS == "aix" {
+ t.Skip("pprof not yet available on AIX (see golang.org/issue/28555)")
+ }
fn := runTestProg(t, "testprog", "TimeProf")
fn = strings.TrimSpace(fn)
defer os.Remove(fn)