Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/dist: consolidate runtime CPU tests
Instead of running: go test -short runtime -cpu=1 go test -short runtime -cpu=2 go test -short runtime -cpu=4 Run just: go test -short runtime -cpu=1,2,4 This is a return to the Go 1.4.2 behavior. We lose incremental display of progress and per-cpu timing information, but we don't have to recompile and relink the runtime test, which is slow. This cuts about 10s off all.bash. Updates golang#10571. Change-Id: I6e8c7149780d47439f8bcfa888e6efc84290c60a Reviewed-on: https://go-review.googlesource.com/9350 Reviewed-by: Dave Cheney <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Reviewed-by: Dmitry Vyukov <[email protected]>
- Loading branch information