aboutsummaryrefslogtreecommitdiff
path: root/test/run.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2018-10-16 21:37:44 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2018-10-17 16:42:42 +0000
commitf2a676536f9aa4c230c90e48404e89f30477f243 (patch)
tree42e35674985943f9fd641846c29d2847fcd7fb22 /test/run.go
parent07e738ec32025da458cdf968e4f991972471e6e9 (diff)
downloadgo-f2a676536f9aa4c230c90e48404e89f30477f243.tar.gz
go-f2a676536f9aa4c230c90e48404e89f30477f243.zip
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 <josharian@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'test/run.go')
-rw-r--r--test/run.go1
1 files changed, 1 insertions, 0 deletions
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)