Run tests without -v (#1562)

diff --git a/Makefile b/Makefile
index eb284c2..39606b5 100644
--- a/Makefile
+++ b/Makefile
@@ -23,10 +23,10 @@
 	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/...