Commit 52aebe8d authored by Bryan C. Mills's avatar Bryan C. Mills

runtime: skip TestPingPongHog on builders

This test is failing consistently in the longtest builders,
potentially masking regressions in other packages.

Updates #35271

Change-Id: Idc03171c0109b5c8d4913e0af2078c1115666897
Reviewed-on: https://go-review.googlesource.com/c/go/+/206098Reviewed-by: default avatarCarlos Amedee <carlos@golang.org>
parent 45b4ed75
...@@ -6,6 +6,7 @@ package runtime_test ...@@ -6,6 +6,7 @@ package runtime_test
import ( import (
"fmt" "fmt"
"internal/testenv"
"math" "math"
"net" "net"
"runtime" "runtime"
...@@ -422,6 +423,7 @@ func TestPingPongHog(t *testing.T) { ...@@ -422,6 +423,7 @@ func TestPingPongHog(t *testing.T) {
if testing.Short() { if testing.Short() {
t.Skip("skipping in -short mode") t.Skip("skipping in -short mode")
} }
testenv.SkipFlaky(t, 35271)
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1)) defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
done := make(chan bool) done := make(chan bool)
......
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