Commit 10a8cb2b authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

refs #5672 tune timeouts for drd tests


git-svn-id: file:///svn/toku/tokudb@51473 c7de825b-a66e-492c-adef-691d508d4ae1
parent 52bf3d42
...@@ -470,14 +470,14 @@ if(BUILD_TESTING OR BUILD_SRC_TESTS) ...@@ -470,14 +470,14 @@ if(BUILD_TESTING OR BUILD_SRC_TESTS)
endif () endif ()
add_custom_executable(tiny ${test} ${base}) add_custom_executable(tiny ${test} ${base})
add_drd_test(ydb/drd_tiny_${test} $<TARGET_FILE:tiny_${test}> --num_seconds 5 --num_elements 150 --join_timeout 2500) add_drd_test(ydb/drd_tiny_${test} $<TARGET_FILE:tiny_${test}> --num_seconds 5 --num_elements 150 --join_timeout 3000)
set_tests_properties(ydb/drd_tiny_${test} PROPERTIES TIMEOUT 6000) set_tests_properties(ydb/drd_tiny_${test} PROPERTIES TIMEOUT 3600)
add_custom_executable(mid ${test} ${base}) add_custom_executable(mid ${test} ${base})
add_drd_test(ydb/drd_mid_${test} ${CMAKE_CFG_INTDIR}/run_stress_test.sh $<TARGET_FILE:mid_${test}> 10000 100 18000) add_drd_test(ydb/drd_mid_${test} ${CMAKE_CFG_INTDIR}/run_stress_test.sh $<TARGET_FILE:mid_${test}> 10000 100 14400)
set_tests_properties(ydb/drd_mid_${test} PROPERTIES TIMEOUT 21600) set_tests_properties(ydb/drd_mid_${test} PROPERTIES TIMEOUT 15000)
add_custom_executable(large ${test} ${base}) add_custom_executable(large ${test} ${base})
add_drd_test(ydb/drd_large_${test} ${CMAKE_CFG_INTDIR}/run_stress_test.sh $<TARGET_FILE:large_${test}> 150000 1000 24000) add_drd_test(ydb/drd_large_${test} ${CMAKE_CFG_INTDIR}/run_stress_test.sh $<TARGET_FILE:large_${test}> 150000 1000 25200)
set_tests_properties(ydb/drd_large_${test} PROPERTIES TIMEOUT 25600) set_tests_properties(ydb/drd_large_${test} PROPERTIES TIMEOUT 25800)
endif() endif()
endforeach(src) endforeach(src)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment