From f2a676536f9aa4c230c90e48404e89f30477f243 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Tue, 16 Oct 2018 21:37:44 -0700 Subject: [PATCH] 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 --- test/run.go | 1 + 1 file changed, 1 insertion(+) 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) -- 2.50.0