diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c60a8995..df9c7281 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -218,34 +218,24 @@ else() set_tests_properties(smoke PROPERTIES TIMEOUT 600 RUN_SERIAL OFF) if(MDBX_BUILD_TOOLS) add_test(NAME smoke_chk COMMAND ${MDBX_OUTPUT_DIR}/mdbx_chk -nvv smoke.db) - set_tests_properties( - smoke_chk - PROPERTIES DEPENDS smoke - TIMEOUT 60 - FAIL_REGULAR_EXPRESSION "cooperative mode" - REQUIRED_FILES smoke.db) + set_tests_properties(smoke_chk PROPERTIES + DEPENDS smoke + TIMEOUT 60 + FAIL_REGULAR_EXPRESSION "cooperative mode" + REQUIRED_FILES smoke.db) add_test(NAME smoke_chk_copy COMMAND ${MDBX_OUTPUT_DIR}/mdbx_chk -nvv smoke.db-copy) - set_tests_properties( - smoke_chk_copy - PROPERTIES DEPENDS smoke - TIMEOUT 60 - FAIL_REGULAR_EXPRESSION "cooperative mode" - REQUIRED_FILES smoke.db-copy) + set_tests_properties(smoke_chk_copy PROPERTIES + DEPENDS smoke + TIMEOUT 60 + FAIL_REGULAR_EXPRESSION "cooperative mode" + REQUIRED_FILES smoke.db-copy) add_test(NAME smoke_copy_asis COMMAND ${MDBX_OUTPUT_DIR}/mdbx_copy -f smoke.db copy_asis.db) - set_tests_properties( - smoke_copy_asis - PROPERTIES DEPENDS smoke - TIMEOUT 60 - REQUIRED_FILES smoke.db) + set_tests_properties(smoke_copy_asis PROPERTIES DEPENDS smoke TIMEOUT 60 REQUIRED_FILES smoke.db) add_test(NAME smoke_copy_compactify COMMAND ${MDBX_OUTPUT_DIR}/mdbx_copy -f -c smoke.db copy_compactify.db) - set_tests_properties( - smoke_copy_compactify - PROPERTIES DEPENDS smoke - TIMEOUT 60 - REQUIRED_FILES smoke.db) + set_tests_properties(smoke_copy_compactify PROPERTIES DEPENDS smoke TIMEOUT 60 REQUIRED_FILES smoke.db) endif() add_test( @@ -259,16 +249,11 @@ else() set_tests_properties(dupsort_writemap_chk PROPERTIES DEPENDS dupsort_writemap TIMEOUT 60 REQUIRED_FILES dupsort_writemap.db) add_test(NAME dupsort_writemap_chk_copy COMMAND ${MDBX_OUTPUT_DIR}/mdbx_chk -nvvc dupsort_writemap.db-copy) - set_tests_properties( - dupsort_writemap_chk_copy - PROPERTIES DEPENDS - dupsort_writemap - TIMEOUT - 60 - FAIL_REGULAR_EXPRESSION - "monopolistic mode" - REQUIRED_FILES - dupsort_writemap.db-copy) + set_tests_properties(dupsort_writemap_chk_copy PROPERTIES + DEPENDS dupsort_writemap + TIMEOUT 60 + FAIL_REGULAR_EXPRESSION "monopolistic mode" + REQUIRED_FILES dupsort_writemap.db-copy) endif() add_test(NAME uniq_nested @@ -277,27 +262,17 @@ else() set_tests_properties(uniq_nested PROPERTIES TIMEOUT 1800 RUN_SERIAL OFF) if(MDBX_BUILD_TOOLS) add_test(NAME uniq_nested_chk COMMAND ${MDBX_OUTPUT_DIR}/mdbx_chk -nvvw uniq_nested.db) - set_tests_properties( - uniq_nested_chk - PROPERTIES DEPENDS - uniq_nested - TIMEOUT - 60 - FAIL_REGULAR_EXPRESSION - "cooperative mode" - REQUIRED_FILES - uniq_nested.db) + set_tests_properties(uniq_nested_chk PROPERTIES + DEPENDS uniq_nested + TIMEOUT 60 + FAIL_REGULAR_EXPRESSION "cooperative mode" + REQUIRED_FILES uniq_nested.db) add_test(NAME uniq_nested_chk_copy COMMAND ${MDBX_OUTPUT_DIR}/mdbx_chk -nvv uniq_nested.db-copy) - set_tests_properties( - uniq_nested_chk_copy - PROPERTIES DEPENDS - uniq_nested - TIMEOUT - 60 - FAIL_REGULAR_EXPRESSION - "cooperative mode" - REQUIRED_FILES - uniq_nested.db-copy) + set_tests_properties(uniq_nested_chk_copy PROPERTIES + DEPENDS uniq_nested + TIMEOUT 60 + FAIL_REGULAR_EXPRESSION "cooperative mode" + REQUIRED_FILES uniq_nested.db-copy) endif() if(NOT SUBPROJECT)