From 605c94d57fbc2e776843fadc7443a2f713cf631d Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 28 Jun 2023 19:14:27 +0200 Subject: test: add test timeouts, prettier output --- test/CMakeLists.txt | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 6195eec..326a50b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,17 +1,24 @@ find_package(Python3 REQUIRED COMPONENTS Interpreter) -set(args +set(python_test_args + --no-header -v "${CMAKE_CURRENT_SOURCE_DIR}" --server-binary "$" --worker-binary "$" --client-binary "$" --project-version "${PROJECT_VERSION}") -add_test(NAME python_tests - COMMAND Python3::Interpreter -m pytest ${args} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") +function(add_my_test name) + list(POP_FRONT ARGV) + add_test(NAME "${name}" + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMAND ${ARGV}) + set_tests_properties("${name}" PROPERTIES TIMEOUT 60) +endfunction() -add_test(NAME python_tests_valgrind - COMMAND Python3::Interpreter -m pytest ${args} - --valgrind-binary "${CMAKE_CURRENT_SOURCE_DIR}/../src/valgrind.sh" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") +add_my_test(python_tests + Python3::Interpreter -m pytest ${python_test_args}) + +add_my_test(python_tests_valgrind + Python3::Interpreter -m pytest ${python_test_args} + --valgrind-binary "${CMAKE_CURRENT_SOURCE_DIR}/../src/valgrind.sh") -- cgit v1.2.3