Commit fcfbeb3a authored by Keith Randall's avatar Keith Randall

test: shorten test runtime

This test was taking a long time, reduce its zealousness.

Change-Id: Ib824247b84b0039a9ec690f72336bef3738d4c44
Reviewed-on: https://go-review.googlesource.com/2502Reviewed-by: 's avatarJosh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: 's avatarMinux Ma <minux@golang.org>
parent abb2aa20
...@@ -17,7 +17,7 @@ func test() { ...@@ -17,7 +17,7 @@ func test() {
var wg sync.WaitGroup var wg sync.WaitGroup
wg.Add(2) wg.Add(2)
test := func() { test := func() {
for i := 0; i < 100; i++ { for i := 0; i < 10; i++ {
buf := &bytes.Buffer{} buf := &bytes.Buffer{}
pprof.Lookup("goroutine").WriteTo(buf, 2) pprof.Lookup("goroutine").WriteTo(buf, 2)
} }
...@@ -30,8 +30,8 @@ func test() { ...@@ -30,8 +30,8 @@ func test() {
} }
func main() { func main() {
runtime.GOMAXPROCS(2) runtime.GOMAXPROCS(4)
for i := 0; i < 100; i++ { for i := 0; i < 10; i++ {
test() test()
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment