From: Josh Bleecher Snyder Date: Wed, 17 Oct 2018 04:37:44 +0000 (-0700) Subject: test: limit runoutput concurrency with -v X-Git-Tag: go1.12beta1~743 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f2a676536f9aa4c230c90e48404e89f30477f243;p=gostls13.git test: limit runoutput concurrency with -v This appears to have simply been an oversight. Change-Id: Ia5d1309b3ebc99c9abbf0282397693272d8178aa Reviewed-on: https://go-review.googlesource.com/c/142885 Run-TryBot: Josh Bleecher Snyder Reviewed-by: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- diff --git a/test/run.go b/test/run.go index 0974e9fdb8..b6421d5e41 100644 --- a/test/run.go +++ b/test/run.go @@ -78,6 +78,7 @@ func main() { // Disable parallelism if printing or if using a simulator. if *verbose || len(findExecCmd()) > 0 { *numParallel = 1 + *runoutputLimit = 1 } ratec = make(chan bool, *numParallel)