reduce timeout for tests to 5m (7m for testrace) (#1635)

This commit is contained in:
dfawley 2017-10-31 14:07:09 -07:00 committed by Menghan Li
parent 5db344a40a
commit fb4b2b29e4
1 changed files with 2 additions and 2 deletions

View File

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