1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

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.
This commit is contained in:
AnotherTest 2020-12-15 21:41:55 +03:30 committed by Andreas Kling
parent 4668dfa7c7
commit eb7a943641

View file

@ -138,6 +138,7 @@ if (BUILD_LAGOM)
COMMAND shell_lagom "${TEST_PATH}" COMMAND shell_lagom "${TEST_PATH}"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
) )
set_tests_properties("Shell-${TEST_NAME}" PROPERTIES TIMEOUT 10)
endforeach() endforeach()
endif() endif()
endif() endif()