From 072eda508bda6601954f6a25a9cd124701481cf2 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Wed, 25 Jan 2017 20:55:37 -0800 Subject: [PATCH] test: bump e2e timeout to 15 minutes PPC64 timing out; integration tests already at 15 minutes. --- test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test b/test index b9cd3d72f..376b2fa6d 100755 --- a/test +++ b/test @@ -114,13 +114,13 @@ function cov_pass { function e2e_pass { echo "Running e2e tests..." - go test -timeout 10m -v -cpu 1,2,4 $@ ${REPO_PATH}/e2e + go test -timeout 15m -v -cpu 1,2,4 $@ ${REPO_PATH}/e2e } function integration_e2e_pass { echo "Running integration and e2e tests..." - go test -timeout 10m -v -cpu 1,2,4 $@ ${REPO_PATH}/e2e & + go test -timeout 15m -v -cpu 1,2,4 $@ ${REPO_PATH}/e2e & e2epid="$!" go test -timeout 15m -v -cpu 1,2,4 $@ ${REPO_PATH}/integration & intpid="$!"