From fcfbeb3adf5830d1887f5f52bd78fdbaa8429d75 Mon Sep 17 00:00:00 2001 From: Keith Randall Date: Wed, 7 Jan 2015 16:46:29 -0800 Subject: [PATCH] test: shorten test runtime 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 Reviewed-by: Minux Ma --- test/fixedbugs/issue9321.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/fixedbugs/issue9321.go b/test/fixedbugs/issue9321.go index 06cb5a6e36..e850d8f200 100644 --- a/test/fixedbugs/issue9321.go +++ b/test/fixedbugs/issue9321.go @@ -17,7 +17,7 @@ func test() { 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) } @@ -30,8 +30,8 @@ func test() { } func main() { - runtime.GOMAXPROCS(2) - for i := 0; i < 100; i++ { + runtime.GOMAXPROCS(4) + for i := 0; i < 10; i++ { test() } } -- 2.48.1