From 469250fb772f4352f265c1d97a19f85b12024a05 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 13 Aug 2013 12:35:37 -0400 Subject: [PATCH] runtime/pprof: test netbsd and openbsd again Maybe these will work now. R=golang-dev, dvyukov, bradfitz CC=golang-dev https://golang.org/cl/12787044 --- src/pkg/runtime/pprof/pprof.go | 2 +- src/pkg/runtime/pprof/pprof_test.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pkg/runtime/pprof/pprof.go b/src/pkg/runtime/pprof/pprof.go index e7eb66a557..358539a5d1 100644 --- a/src/pkg/runtime/pprof/pprof.go +++ b/src/pkg/runtime/pprof/pprof.go @@ -20,7 +20,7 @@ import ( "text/tabwriter" ) -// BUG(rsc): Profiles are incomplete and inaccuate on NetBSD, OpenBSD, and OS X. +// BUG(rsc): Profiles are incomplete and inaccuate on OS X. // See http://golang.org/issue/6047 for details. // A Profile is a collection of stack traces showing the call sequences diff --git a/src/pkg/runtime/pprof/pprof_test.go b/src/pkg/runtime/pprof/pprof_test.go index 738e2c4ec4..64c55b05ee 100644 --- a/src/pkg/runtime/pprof/pprof_test.go +++ b/src/pkg/runtime/pprof/pprof_test.go @@ -175,9 +175,9 @@ func TestCPUProfileWithFork(t *testing.T) { // Operating systems that are expected to fail the tests. See issue 6047. var badOS = map[string]bool{ - "darwin": true, - "netbsd": true, - "openbsd": true, + "darwin": true, + //"netbsd": true, + //"openbsd": true, } func TestBlockProfile(t *testing.T) { -- 2.48.1