From 7103997bd8e9d3e6673d4525c42342c3681a6fe9 Mon Sep 17 00:00:00 2001 From: Menghan Li Date: Wed, 4 Oct 2017 14:23:20 -0700 Subject: [PATCH] Run tests without -v (#1562) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eb284c23..39606b56 100644 --- a/Makefile +++ b/Makefile @@ -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/...