diff options
author | gvit <gvit@ydb.tech> | 2023-10-06 15:36:44 +0300 |
---|---|---|
committer | gvit <gvit@ydb.tech> | 2023-10-06 16:51:39 +0300 |
commit | 9a5d5c5c59a39f1793ed012e482d94ab769923da (patch) | |
tree | fe8e058d8202b2f8c358f8b01754d2c35e07564f | |
parent | d4294e2e8c463bacf0d38884006e6a39b4f37c5a (diff) | |
download | ydb-9a5d5c5c59a39f1793ed012e482d94ab769923da.tar.gz |
Change "ya.make"
-rw-r--r-- | ydb/services/ydb/ut/CMakeLists.darwin-x86_64.txt | 4 | ||||
-rw-r--r-- | ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt | 4 | ||||
-rw-r--r-- | ydb/services/ydb/ut/CMakeLists.linux-x86_64.txt | 4 | ||||
-rw-r--r-- | ydb/services/ydb/ut/CMakeLists.windows-x86_64.txt | 4 | ||||
-rw-r--r-- | ydb/services/ydb/ut/ya.make | 7 |
5 files changed, 11 insertions, 12 deletions
diff --git a/ydb/services/ydb/ut/CMakeLists.darwin-x86_64.txt b/ydb/services/ydb/ut/CMakeLists.darwin-x86_64.txt index 42d951e5d3c..4ba802f888f 100644 --- a/ydb/services/ydb/ut/CMakeLists.darwin-x86_64.txt +++ b/ydb/services/ydb/ut/CMakeLists.darwin-x86_64.txt @@ -76,7 +76,7 @@ set_property( ydb-services-ydb-ut PROPERTY SPLIT_FACTOR - 10 + 60 ) add_yunittest( NAME @@ -109,7 +109,7 @@ set_yunittest_property( ydb-services-ydb-ut PROPERTY TIMEOUT - 300 + 600 ) target_allocator(ydb-services-ydb-ut system_allocator diff --git a/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt b/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt index c99764e581c..c19d80cd752 100644 --- a/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt +++ b/ydb/services/ydb/ut/CMakeLists.linux-aarch64.txt @@ -79,7 +79,7 @@ set_property( ydb-services-ydb-ut PROPERTY SPLIT_FACTOR - 10 + 60 ) add_yunittest( NAME @@ -112,7 +112,7 @@ set_yunittest_property( ydb-services-ydb-ut PROPERTY TIMEOUT - 300 + 600 ) target_allocator(ydb-services-ydb-ut cpp-malloc-jemalloc diff --git a/ydb/services/ydb/ut/CMakeLists.linux-x86_64.txt b/ydb/services/ydb/ut/CMakeLists.linux-x86_64.txt index ca7ad45afb8..a6fd8171b0f 100644 --- a/ydb/services/ydb/ut/CMakeLists.linux-x86_64.txt +++ b/ydb/services/ydb/ut/CMakeLists.linux-x86_64.txt @@ -80,7 +80,7 @@ set_property( ydb-services-ydb-ut PROPERTY SPLIT_FACTOR - 10 + 60 ) add_yunittest( NAME @@ -113,7 +113,7 @@ set_yunittest_property( ydb-services-ydb-ut PROPERTY TIMEOUT - 300 + 600 ) target_allocator(ydb-services-ydb-ut cpp-malloc-tcmalloc diff --git a/ydb/services/ydb/ut/CMakeLists.windows-x86_64.txt b/ydb/services/ydb/ut/CMakeLists.windows-x86_64.txt index 88837dc1674..f4b8135bcd7 100644 --- a/ydb/services/ydb/ut/CMakeLists.windows-x86_64.txt +++ b/ydb/services/ydb/ut/CMakeLists.windows-x86_64.txt @@ -69,7 +69,7 @@ set_property( ydb-services-ydb-ut PROPERTY SPLIT_FACTOR - 10 + 60 ) add_yunittest( NAME @@ -102,7 +102,7 @@ set_yunittest_property( ydb-services-ydb-ut PROPERTY TIMEOUT - 300 + 600 ) target_allocator(ydb-services-ydb-ut system_allocator diff --git a/ydb/services/ydb/ut/ya.make b/ydb/services/ydb/ut/ya.make index 41f68a70522..321a816019f 100644 --- a/ydb/services/ydb/ut/ya.make +++ b/ydb/services/ydb/ut/ya.make @@ -1,14 +1,13 @@ UNITTEST_FOR(ydb/services/ydb) FORK_SUBTESTS() - -IF (SANITIZER_TYPE OR WITH_VALGRIND) - SPLIT_FACTOR(60) +SPLIT_FACTOR(60) +IF (SANITIZER_TYPE == "thread" OR WITH_VALGRIND) TIMEOUT(3600) SIZE(LARGE) TAG(ya:fat) ELSE() - TIMEOUT(300) + TIMEOUT(600) SIZE(MEDIUM) ENDIF() |