This test was taking a long time, reduce its zealousness.
Change-Id: Ib824247b84b0039a9ec690f72336bef3738d4c44
Reviewed-on: https://go-review.googlesource.com/2502
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Minux Ma <minux@golang.org>
var wg sync.WaitGroup
wg.Add(2)
test := func() {
- for i := 0; i < 100; i++ {
+ for i := 0; i < 10; i++ {
buf := &bytes.Buffer{}
pprof.Lookup("goroutine").WriteTo(buf, 2)
}
}
func main() {
- runtime.GOMAXPROCS(2)
- for i := 0; i < 100; i++ {
+ runtime.GOMAXPROCS(4)
+ for i := 0; i < 10; i++ {
test()
}
}