Skip to content

Commit 7bfd681

Browse files
Helflymtklauser
authored andcommitted
runtime/pprof: skip tests for AIX
Most of the time, the pprof tests are passing, except for the builder. The reason is still unknown but I'd rather release the builder to avoid missing other more important bugs. Updates #45170 Change-Id: I667543ee1ae309b7319c5b3676a0901b4d0ecf2e Reviewed-on: https://go-review.googlesource.com/c/go/+/306489 Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Cherry Zhang <[email protected]> Trust: Lynn Boger <[email protected]>
1 parent 776d8d3 commit 7bfd681

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/runtime/pprof/pprof_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ func testCPUProfile(t *testing.T, matches matchFunc, need []string, avoid []stri
276276

277277
broken := false
278278
switch runtime.GOOS {
279-
case "ios", "dragonfly", "netbsd", "illumos", "solaris":
279+
// See https://golang.org/issue/45170 for AIX.
280+
case "ios", "dragonfly", "netbsd", "illumos", "solaris", "aix":
280281
broken = true
281282
case "openbsd":
282283
if runtime.GOARCH == "arm" || runtime.GOARCH == "arm64" {

0 commit comments

Comments
 (0)