1
0
mirror of https://github.com/golang/go synced 2024-11-25 11:17:56 -07:00

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
This commit is contained in:
Russ Cox 2013-08-13 12:35:37 -04:00
parent a538558003
commit 469250fb77
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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) {