Skip to content

Commit

Permalink
test: shorten test runtime
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Minux Ma <[email protected]>
  • Loading branch information
randall77 committed Jan 8, 2015
1 parent abb2aa2 commit fcfbeb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/fixedbugs/issue9321.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand All @@ -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()
}
}

0 comments on commit fcfbeb3

Please sign in to comment.