aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2017-02-20 19:48:28 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2017-02-20 20:17:16 +0000
commita37f9d8a17cffc6fb79120fad667b0684fd03bc7 (patch)
tree169dd1d0879989bf8ecf413f712697b4f4bece36 /src
parentb9574f46f9079a4237a9dd42d30a6ec91723ee5a (diff)
downloadgo-a37f9d8a17cffc6fb79120fad667b0684fd03bc7.tar.xz
runtime/pprof: mark TestMutexProfile as flaky for now
Flaky tests hurt productivity. Disable for now. Updates #19139 Change-Id: I2e3040bdf0e53597a1c4f925b788e3268ea284c1 Reviewed-on: https://go-review.googlesource.com/37291 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Peter Weinberger <pjw@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/runtime/pprof/pprof_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/pprof/pprof_test.go b/src/runtime/pprof/pprof_test.go
index 287a9b95c4..00608c7354 100644
--- a/src/runtime/pprof/pprof_test.go
+++ b/src/runtime/pprof/pprof_test.go
@@ -511,6 +511,7 @@ func blockCond() {
}
func TestMutexProfile(t *testing.T) {
+ testenv.SkipFlaky(t, 19139)
old := runtime.SetMutexProfileFraction(1)
defer runtime.SetMutexProfileFraction(old)
if old != 0 {