From ae5aafae92a8fca73cc26923e901e86f61149ec9 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Tue, 6 Sep 2022 18:25:56 +0000 Subject: [PATCH] Increase pull data timeout Tests would often fail because the data would not finish transfering before the timeout threshold was reached. That timeout is now increased so data should finish transferring in time. Fixes #691 --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f1448a205..54550d864 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -14,7 +14,7 @@ function(PULL_DATA THE_URL THE_FILE) ${CMAKE_CURRENT_BINARY_DIR}/data/${THE_FILE} SHOW_PROGRESS STATUS status - INACTIVITY_TIMEOUT 30 + INACTIVITY_TIMEOUT 120 ) list(GET status 0 status_num) if(NOT status_num EQUAL 0 OR NOT EXISTS "${CMAKE_CURRENT_BINARY_DIR}/data/${THE_FILE}")