We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f6a3ba commit c0fa9e3Copy full SHA for c0fa9e3
src/runtime/pprof/trace_test.go
@@ -371,6 +371,10 @@ func TestTraceFutileWakeup(t *testing.T) {
371
// The test generates a full-load of futile wakeups on channels,
372
// and ensures that the trace is consistent after their removal.
373
skipTraceTestsIfNeeded(t)
374
+ if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
375
+ t.Skip("test is unreliable; issue #10512")
376
+ }
377
+
378
buf := new(bytes.Buffer)
379
if err := StartTrace(buf); err != nil {
380
t.Fatalf("failed to start tracing: %v", err)
0 commit comments