From 9073a4fa0d724514b00f5baeab901fb426042262 Mon Sep 17 00:00:00 2001 From: Dimitrios Siganos Date: Fri, 27 Jan 2023 12:23:47 +0000 Subject: [PATCH] Increase core test timeout to 20 minutes (#4085) The tests are failing because of timeouts. --- ci/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test.sh b/ci/test.sh index e5e558f5..329e96bd 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -2,9 +2,9 @@ build_dir=${1-${PWD}} if [[ ${TEST_USE_ROCKSDB-0} == 1 ]]; then - TIMEOUT_DEFAULT=1800 + TIMEOUT_DEFAULT=2400 else - TIMEOUT_DEFAULT=900 + TIMEOUT_DEFAULT=1200 fi BUSYBOX_BASH=${BUSYBOX_BASH-0}