From 4dda9ba9c74be32e347e98c006bdbef3e7b363d2 Mon Sep 17 00:00:00 2001 From: Gunter Labes Date: Tue, 5 Mar 2019 09:41:18 +0100 Subject: [PATCH] cause error to test --- utils/travis/docker_run.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/utils/travis/docker_run.sh b/utils/travis/docker_run.sh index 3db5c5054f3a..e55be765c23b 100755 --- a/utils/travis/docker_run.sh +++ b/utils/travis/docker_run.sh @@ -92,9 +92,10 @@ else exit $BUILD_RET fi - if (( SECONDS > 60*build_timeout )); then - die "Insufficient time remaining to execute unit tests. Exiting now to allow caching to occur. Please restart the job." - fi +# if (( SECONDS > 60*build_timeout )); then + if true; then + die "Insufficient time remaining to execute unit tests. Exiting now to allow caching to occur. Please restart the job." + fi # needed since bash returns the exit code of the final command executed, so a failure needs to be returned if any unit tests fail EXIT_VAL=0