Skip to content

Commit c0fa9e3

Browse files
mdempskydvyukov
authored andcommitted
runtime/pprof: disable flaky TestTraceFutileWakeup on linux/ppc64le
Update #10512. Change-Id: Ifdc59c3a5d8aba420b34ae4e37b3c2315dd7c783 Reviewed-on: https://go-review.googlesource.com/9162 Reviewed-by: Dmitry Vyukov <[email protected]>
1 parent 0f6a3ba commit c0fa9e3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/runtime/pprof/trace_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,10 @@ func TestTraceFutileWakeup(t *testing.T) {
371371
// The test generates a full-load of futile wakeups on channels,
372372
// and ensures that the trace is consistent after their removal.
373373
skipTraceTestsIfNeeded(t)
374+
if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
375+
t.Skip("test is unreliable; issue #10512")
376+
}
377+
374378
buf := new(bytes.Buffer)
375379
if err := StartTrace(buf); err != nil {
376380
t.Fatalf("failed to start tracing: %v", err)

0 commit comments

Comments
 (0)