Run tests without -v (#1562)

This commit is contained in:
Menghan Li
2017-10-04 14:23:20 -07:00
committed by dfawley
parent c8405557a4
commit 7103997bd8

View File

@ -23,10 +23,10 @@ proto:
go generate google.golang.org/grpc/...
test: testdeps
go test -v -cpu 1,4 google.golang.org/grpc/...
go test -cpu 1,4 google.golang.org/grpc/...
testrace: testdeps
go test -v -race -cpu 1,4 google.golang.org/grpc/...
go test -race -cpu 1,4 google.golang.org/grpc/...
clean:
go clean -i google.golang.org/grpc/...