summaryrefslogtreecommitdiff
path: root/libgo/go/runtime/pprof
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-06-10 12:37:34 -0700
committerIan Lance Taylor <iant@golang.org>2021-06-10 14:41:23 -0700
commitee52bf609bac45b3c251858a69071262f46ee89c (patch)
tree4c079eab4884dc9c32e6f62fe9e2f0ff0d784306 /libgo/go/runtime/pprof
parent00d07ec6e12451acc7a290cd93be03bed50cb666 (diff)
downloadgcc-ee52bf609bac45b3c251858a69071262f46ee89c.tar.gz
libgo: update to Go1.16.5 release
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/326772
Diffstat (limited to 'libgo/go/runtime/pprof')
-rw-r--r--libgo/go/runtime/pprof/pprof_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/libgo/go/runtime/pprof/pprof_test.go b/libgo/go/runtime/pprof/pprof_test.go
index 42411e9179a..73d7aaaf9f8 100644
--- a/libgo/go/runtime/pprof/pprof_test.go
+++ b/libgo/go/runtime/pprof/pprof_test.go
@@ -279,7 +279,8 @@ func testCPUProfile(t *testing.T, matches matchFunc, need []string, avoid []stri
broken := false
switch runtime.GOOS {
- case "darwin", "ios", "dragonfly", "netbsd", "illumos", "solaris":
+ // See https://golang.org/issue/45170 for AIX.
+ case "darwin", "ios", "dragonfly", "netbsd", "illumos", "solaris", "aix":
broken = true
case "openbsd":
if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {