Commit c0fa9e3f authored by Matthew Dempsky's avatar Matthew Dempsky Committed by Dmitry Vyukov

runtime/pprof: disable flaky TestTraceFutileWakeup on linux/ppc64le

Update #10512.

Change-Id: Ifdc59c3a5d8aba420b34ae4e37b3c2315dd7c783
Reviewed-on: https://go-review.googlesource.com/9162Reviewed-by: default avatarDmitry Vyukov <dvyukov@google.com>
parent 0f6a3ba4
...@@ -371,6 +371,10 @@ func TestTraceFutileWakeup(t *testing.T) { ...@@ -371,6 +371,10 @@ func TestTraceFutileWakeup(t *testing.T) {
// The test generates a full-load of futile wakeups on channels, // The test generates a full-load of futile wakeups on channels,
// and ensures that the trace is consistent after their removal. // and ensures that the trace is consistent after their removal.
skipTraceTestsIfNeeded(t) skipTraceTestsIfNeeded(t)
if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
t.Skip("test is unreliable; issue #10512")
}
buf := new(bytes.Buffer) buf := new(bytes.Buffer)
if err := StartTrace(buf); err != nil { if err := StartTrace(buf); err != nil {
t.Fatalf("failed to start tracing: %v", err) t.Fatalf("failed to start tracing: %v", err)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment