test: bump grpcproxy timeout to 20m, print pass times

This commit is contained in:
Anthony Romano 2017-07-06 12:51:24 -07:00
parent 894751ef44
commit a2a80cb1bf

4
test
View File

@ -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"