From a2a80cb1bf1373ea74e9484810f42106a3775b64 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Thu, 6 Jul 2017 12:51:24 -0700 Subject: [PATCH] test: bump grpcproxy timeout to 20m, print pass times --- test | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test b/test index 1b513ff0a02..fdcb0198a6b 100755 --- a/test +++ b/test @@ -207,7 +207,7 @@ function integration_e2e_pass { } function grpcproxy_pass { - go test -timeout 15m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 $@ ${REPO_PATH}/integration + go test -timeout 20m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 $@ ${REPO_PATH}/integration go test -timeout 15m -v ${RACE} -tags cluster_proxy -cpu 1,2,4 $@ ${REPO_PATH}/clientv3/integration } @@ -450,7 +450,9 @@ function build_pass { } for pass in $PASSES; do + echo "Starting '$pass' pass at $(date)" ${pass}_pass $@ + echo "Finished '$pass' pass at $(date)" done echo "Success"