From 52aebe8d2150f2709c32f1dceb5d58bab90bc86f Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Fri, 8 Nov 2019 08:38:52 -0500 Subject: [PATCH] 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 --- src/runtime/proc_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime/proc_test.go b/src/runtime/proc_test.go index acee7a1819..48b865e8a5 100644 --- a/src/runtime/proc_test.go +++ b/src/runtime/proc_test.go @@ -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) -- 2.50.0