Skip to content

Commit 52aebe8

Browse files
author
Bryan C. Mills
committed
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 <[email protected]>
1 parent 45b4ed7 commit 52aebe8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/runtime/proc_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package runtime_test
66

77
import (
88
"fmt"
9+
"internal/testenv"
910
"math"
1011
"net"
1112
"runtime"
@@ -422,6 +423,7 @@ func TestPingPongHog(t *testing.T) {
422423
if testing.Short() {
423424
t.Skip("skipping in -short mode")
424425
}
426+
testenv.SkipFlaky(t, 35271)
425427

426428
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
427429
done := make(chan bool)

0 commit comments

Comments
 (0)