From eb7a94364188740d67278c74bc17d4223697becd Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Tue, 15 Dec 2020 21:41:55 +0330 Subject: [PATCH] Meta: Set a 10 second timeout on Shell tests Shell-backgrounding seems to be deadlocking at times, until that's fixed, let's not take 5 hours to fail the build. --- Meta/Lagom/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 0e6fcea8ee7..452d83c3cb5 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -138,6 +138,7 @@ if (BUILD_LAGOM) COMMAND shell_lagom "${TEST_PATH}" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) + set_tests_properties("Shell-${TEST_NAME}" PROPERTIES TIMEOUT 10) endforeach() endif() endif()