Skip to content

Commit 469250f

Browse files
committed
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
1 parent a538558 commit 469250f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/pkg/runtime/pprof/pprof.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"text/tabwriter"
2121
)
2222

23-
// BUG(rsc): Profiles are incomplete and inaccuate on NetBSD, OpenBSD, and OS X.
23+
// BUG(rsc): Profiles are incomplete and inaccuate on OS X.
2424
// See http://golang.org/issue/6047 for details.
2525

2626
// A Profile is a collection of stack traces showing the call sequences

src/pkg/runtime/pprof/pprof_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ func TestCPUProfileWithFork(t *testing.T) {
175175

176176
// Operating systems that are expected to fail the tests. See issue 6047.
177177
var badOS = map[string]bool{
178-
"darwin": true,
179-
"netbsd": true,
180-
"openbsd": true,
178+
"darwin": true,
179+
//"netbsd": true,
180+
//"openbsd": true,
181181
}
182182

183183
func TestBlockProfile(t *testing.T) {

0 commit comments

Comments
 (0)