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/+/206098
Reviewed-by: Carlos Amedee <carlos@golang.org>
This commit is contained in:
Bryan C. Mills 2019-11-08 08:38:52 -05:00
parent 45b4ed7577
commit 52aebe8d21

View file

@ -6,6 +6,7 @@ package runtime_test
import (
"fmt"
"internal/testenv"
"math"
"net"
"runtime"
@ -422,6 +423,7 @@ func TestPingPongHog(t *testing.T) {
if testing.Short() {
t.Skip("skipping in -short mode")
}
testenv.SkipFlaky(t, 35271)
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
done := make(chan bool)