diff options
| author | Bryan C. Mills <bcmills@google.com> | 2019-11-08 08:38:52 -0500 |
|---|---|---|
| committer | Bryan C. Mills <bcmills@google.com> | 2019-11-08 15:10:39 +0000 |
| commit | 52aebe8d2150f2709c32f1dceb5d58bab90bc86f (patch) | |
| tree | 177e61f63ab0cfa726329d13fc0c66a1f5b215e0 /src/runtime/proc_test.go | |
| parent | 45b4ed7577f87c9c88271e803e76f2d81b0f1f77 (diff) | |
| download | go-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.go | 2 |
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) |
