From bd105b2bcafc3b8d4e5a17608da33f31d6486946 Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Mon, 24 Jun 2013 23:51:00 +0400 Subject: [PATCH] runtime/pprof: disable testing under race detector until we decide what to do with issues 5659/5736. Profiling with race detector is not very useful in general, and now it makes race builders red. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/10523043 --- src/pkg/runtime/pprof/pprof_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pkg/runtime/pprof/pprof_test.go b/src/pkg/runtime/pprof/pprof_test.go index 6d5764f4a2..94d19f741c 100644 --- a/src/pkg/runtime/pprof/pprof_test.go +++ b/src/pkg/runtime/pprof/pprof_test.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// See issue 5659. +// +build !race + package pprof_test import ( -- 2.48.1