]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip TestPingPongHog on builders
authorBryan C. Mills <bcmills@google.com>
Fri, 8 Nov 2019 13:38:52 +0000 (08:38 -0500)
committerBryan C. Mills <bcmills@google.com>
Fri, 8 Nov 2019 15:10:39 +0000 (15:10 +0000)
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>
src/runtime/proc_test.go

index acee7a181936ce1fd38d5247a55b0673d8dacaaa..48b865e8a516206d289ca0610fe906f6910b7370 100644 (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)