]> Cypherpunks repositories - gostls13.git/commitdiff
test: limit runoutput concurrency with -v
authorJosh Bleecher Snyder <josharian@gmail.com>
Wed, 17 Oct 2018 04:37:44 +0000 (21:37 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Wed, 17 Oct 2018 16:42:42 +0000 (16:42 +0000)
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>

test/run.go

index 0974e9fdb809bbcbcfb4d7807383df1d0226e32d..b6421d5e419c435c52757a1c4767b2422cee0838 100644 (file)
@@ -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)