aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/proc_test.go
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2019-11-08 08:38:52 -0500
committerBryan C. Mills <bcmills@google.com>2019-11-08 15:10:39 +0000
commit52aebe8d2150f2709c32f1dceb5d58bab90bc86f (patch)
tree177e61f63ab0cfa726329d13fc0c66a1f5b215e0 /src/runtime/proc_test.go
parent45b4ed7577f87c9c88271e803e76f2d81b0f1f77 (diff)
downloadgo-52aebe8d2150f2709c32f1dceb5d58bab90bc86f.tar.xz
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>
Diffstat (limited to 'src/runtime/proc_test.go')
-rw-r--r--src/runtime/proc_test.go2
1 files changed, 2 insertions, 0 deletions
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)