diff options
author | abcdef <akotov@ydb.tech> | 2023-08-29 09:49:44 +0300 |
---|---|---|
committer | abcdef <akotov@ydb.tech> | 2023-08-29 10:03:53 +0300 |
commit | 5afb0c6e17e595eca20f2c58c0634a9be4ec03cf (patch) | |
tree | 8138dd5c41ffeaf0b4a90408cad05fcc41a93c71 | |
parent | a59dcf8fdb8aac44b8c03355f28c270c1853803f (diff) | |
download | ydb-5afb0c6e17e595eca20f2c58c0634a9be4ec03cf.tar.gz |
test execution time
-rw-r--r-- | ydb/apps/ydb/ut/CMakeLists.linux-aarch64.txt | 9 | ||||
-rw-r--r-- | ydb/apps/ydb/ut/CMakeLists.linux-x86_64.txt | 9 | ||||
-rw-r--r-- | ydb/apps/ydb/ut/ya.make | 3 |
3 files changed, 19 insertions, 2 deletions
diff --git a/ydb/apps/ydb/ut/CMakeLists.linux-aarch64.txt b/ydb/apps/ydb/ut/CMakeLists.linux-aarch64.txt index 7b93fec089..8b6e16f12a 100644 --- a/ydb/apps/ydb/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/apps/ydb/ut/CMakeLists.linux-aarch64.txt @@ -55,7 +55,7 @@ set_yunittest_property( ydb-apps-ydb-ut PROPERTY LABELS - SMALL + MEDIUM ) set_yunittest_property( TEST @@ -64,6 +64,13 @@ set_yunittest_property( PROCESSORS 1 ) +set_yunittest_property( + TEST + ydb-apps-ydb-ut + PROPERTY + TIMEOUT + 600 +) target_allocator(ydb-apps-ydb-ut cpp-malloc-jemalloc ) diff --git a/ydb/apps/ydb/ut/CMakeLists.linux-x86_64.txt b/ydb/apps/ydb/ut/CMakeLists.linux-x86_64.txt index 16b271598b..077cbbdad0 100644 --- a/ydb/apps/ydb/ut/CMakeLists.linux-x86_64.txt +++ b/ydb/apps/ydb/ut/CMakeLists.linux-x86_64.txt @@ -56,7 +56,7 @@ set_yunittest_property( ydb-apps-ydb-ut PROPERTY LABELS - SMALL + MEDIUM ) set_yunittest_property( TEST @@ -65,6 +65,13 @@ set_yunittest_property( PROCESSORS 1 ) +set_yunittest_property( + TEST + ydb-apps-ydb-ut + PROPERTY + TIMEOUT + 600 +) target_allocator(ydb-apps-ydb-ut cpp-malloc-tcmalloc libs-tcmalloc-no_percpu_cache diff --git a/ydb/apps/ydb/ut/ya.make b/ydb/apps/ydb/ut/ya.make index d1cce516b0..a7bc653394 100644 --- a/ydb/apps/ydb/ut/ya.make +++ b/ydb/apps/ydb/ut/ya.make @@ -1,5 +1,8 @@ UNITTEST() +TIMEOUT(600) +SIZE(MEDIUM) + DEPENDS( ydb/apps/ydb ) |