diff options
author | ilnaz <ilnaz@ydb.tech> | 2023-10-24 13:31:31 +0300 |
---|---|---|
committer | ilnaz <ilnaz@ydb.tech> | 2023-10-24 13:51:21 +0300 |
commit | 192ac5495fea615e8b7edd968d3f98fe7696c8b0 (patch) | |
tree | 6797dc554a3f2e4a49263b0e5f8ec6d26afe6a54 | |
parent | 81c0a537cced3f4a36789fbf1558b5202251d95b (diff) | |
download | ydb-192ac5495fea615e8b7edd968d3f98fe7696c8b0.tar.gz |
Increase SPLIT_FACTOR() KIKIMR-19675
5 files changed, 5 insertions, 5 deletions
diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin-x86_64.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin-x86_64.txt index 85b41dd7627..b2fc233d151 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin-x86_64.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.darwin-x86_64.txt @@ -38,7 +38,7 @@ set_property( ydb-core-tx-schemeshard-ut_replication_reboots PROPERTY SPLIT_FACTOR - 10 + 20 ) add_yunittest( NAME diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt index 1f3885a7705..e54922c36c3 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-aarch64.txt @@ -41,7 +41,7 @@ set_property( ydb-core-tx-schemeshard-ut_replication_reboots PROPERTY SPLIT_FACTOR - 10 + 20 ) add_yunittest( NAME diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-x86_64.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-x86_64.txt index 8a818378907..d69748bcf75 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-x86_64.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux-x86_64.txt @@ -42,7 +42,7 @@ set_property( ydb-core-tx-schemeshard-ut_replication_reboots PROPERTY SPLIT_FACTOR - 10 + 20 ) add_yunittest( NAME diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.windows-x86_64.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.windows-x86_64.txt index d1cd1af3b15..8b938ee2e13 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.windows-x86_64.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.windows-x86_64.txt @@ -31,7 +31,7 @@ set_property( ydb-core-tx-schemeshard-ut_replication_reboots PROPERTY SPLIT_FACTOR - 10 + 20 ) add_yunittest( NAME diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/ya.make b/ydb/core/tx/schemeshard/ut_replication_reboots/ya.make index d2491946a70..c9852dcf3c8 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/ya.make +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/ya.make @@ -2,7 +2,7 @@ UNITTEST_FOR(ydb/core/tx/schemeshard) FORK_SUBTESTS() -SPLIT_FACTOR(10) +SPLIT_FACTOR(20) IF (SANITIZER_TYPE OR WITH_VALGRIND) TIMEOUT(3600) |