diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-06-20 23:19:52 +0300 |
---|---|---|
committer | Anton Samokhvalov <pg83@yandex.ru> | 2022-06-20 23:19:52 +0300 |
commit | 711dc2153cf3b578e9a51efe904fcd5da68fd931 (patch) | |
tree | cd099c40ef6664f639d305291bdd14c84acd4ecb | |
parent | 1940182aa37a8912f9609df6c24dbc64a05dbc53 (diff) | |
download | ydb-711dc2153cf3b578e9a51efe904fcd5da68fd931.tar.gz |
CPPCOM-76
ref:e958c28af9ec0f6324837115269d9c6a255e4a8a
284 files changed, 669 insertions, 280 deletions
diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt index 28a35fd233..d6c85a76b2 100644 --- a/CMakeLists.linux.txt +++ b/CMakeLists.linux.txt @@ -128,7 +128,7 @@ add_subdirectory(ydb/library/yql/public/decimal) add_subdirectory(ydb/library/yql/public/types) add_subdirectory(contrib/libs/protobuf) add_subdirectory(contrib/tools/protoc/bin) -add_subdirectory(library/cpp/lfalloc) +add_subdirectory(contrib/libs/tcmalloc/no_percpu_cache) add_subdirectory(contrib/libs/protoc) add_subdirectory(contrib/tools/protoc/plugins/cpp_styleguide) add_subdirectory(library/cpp/deprecated/atomic) @@ -1074,6 +1074,7 @@ add_subdirectory(ydb/core/tablet_flat/ut) add_subdirectory(ydb/core/tablet_flat/test/libs/exec) add_subdirectory(ydb/core/tablet_flat/ut_large) add_subdirectory(ydb/core/util/btree_benchmark) +add_subdirectory(library/cpp/lfalloc) add_subdirectory(library/cpp/testing/benchmark/main) add_subdirectory(library/cpp/testing/benchmark) add_subdirectory(library/cpp/linear_regression) diff --git a/build/ymake.core.conf b/build/ymake.core.conf index abea1fbd05..b08ed80d19 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -471,6 +471,19 @@ when ($OS_DARWIN == "yes") { } # tag:allocator +when ($OS_LINUX == "yes") { + when ($GCC) { + # tcmalloc broken build + } + elsewhen ($SANDBOXING) { + # broken + } + elsewhen ($ARCH_X86_64) { + DEFAULT_ALLOCATOR=TCMALLOC_TC + } +} + +# tag:allocator when ($SANITIZER_TYPE) { when ($SANITIZER_TYPE != "no") { DEFAULT_ALLOCATOR=SYSTEM @@ -1354,7 +1367,7 @@ module _BASE_UNIT: _BARE_UNIT { # Adding PEERDIR from trigger doesn't always work. In this case it # cause troubles in contrib/libs/libc_compat/ubuntu_14 under musl # Workaround this issue by setting variable with PEERDIR in trigger - # and then adding PEERDIR to it's value unconditionally. + # and then adding PEERDIR to it's value unconditionally. when ($USE_UBUNTU_COMPATIBILITY == "yes" && $NEED_PLATFORM_PEERDIRS == "yes") { _UBUNTU_COMPAT_PEERDIR=contrib/libs/libc_compat/ubuntu_14 } diff --git a/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt b/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt index 875a0af01f..d5ef10a534 100644 --- a/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt +++ b/contrib/libs/llvm12/utils/TableGen/CMakeLists.linux.txt @@ -13,7 +13,8 @@ target_include_directories(llvm-tblgen PRIVATE ) target_link_libraries(llvm-tblgen PUBLIC contrib-libs-cxxsupp - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache contrib-libs-llvm12 llvm12-lib-Demangle llvm12-lib-Support diff --git a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt new file mode 100644 index 0000000000..2144bdb09a --- /dev/null +++ b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.linux.txt @@ -0,0 +1,77 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + + +add_library(libs-tcmalloc-no_percpu_cache) +target_compile_options(libs-tcmalloc-no_percpu_cache PRIVATE + -DTCMALLOC_256K_PAGES + -DTCMALLOC_DEPRECATED_PERTHREAD +) +target_link_libraries(libs-tcmalloc-no_percpu_cache PUBLIC + contrib-libs-cxxsupp + contrib-restricted-abseil-cpp + libs-tcmalloc-malloc_extension +) +target_sources(libs-tcmalloc-no_percpu_cache PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/no_percpu_cache/aligned_alloc.c +) + +add_global_library_for(libs-tcmalloc-no_percpu_cache.global libs-tcmalloc-no_percpu_cache) +target_compile_options(libs-tcmalloc-no_percpu_cache.global PRIVATE + -DTCMALLOC_256K_PAGES + -DTCMALLOC_DEPRECATED_PERTHREAD +) +target_link_libraries(libs-tcmalloc-no_percpu_cache.global PUBLIC + contrib-libs-cxxsupp + contrib-restricted-abseil-cpp + libs-tcmalloc-malloc_extension +) +target_sources(libs-tcmalloc-no_percpu_cache.global PRIVATE + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/want_hpaa.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/tcmalloc.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/arena.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/background.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/central_freelist.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/common.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/cpu_cache.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/experimental_pow2_below64_size_class.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/experimental_pow2_size_class.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/legacy_size_classes.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/guarded_page_allocator.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/huge_address_map.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/huge_allocator.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/huge_cache.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/huge_page_aware_allocator.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/page_allocator.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/page_allocator_interface.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/page_heap.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/pagemap.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/parameters.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/peak_heap_tracker.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/sampler.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/size_classes.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/span.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/stack_trace_table.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/static_vars.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/stats.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/system-alloc.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/thread_cache.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/transfer_cache.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/experiment.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/noruntime_size_classes.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/cache_topology.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/environment.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/logging.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/memory_stats.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/mincore.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/numa.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/percpu.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/percpu_rseq_asm.S + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/percpu_rseq_unsupported.cc + ${CMAKE_SOURCE_DIR}/contrib/libs/tcmalloc/tcmalloc/internal/util.cc +) diff --git a/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt new file mode 100644 index 0000000000..c031ddb850 --- /dev/null +++ b/contrib/libs/tcmalloc/no_percpu_cache/CMakeLists.txt @@ -0,0 +1,11 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +if (UNIX) + include(CMakeLists.linux.txt) +endif() diff --git a/contrib/libs/tcmalloc/no_percpu_cache/aligned_alloc.c b/contrib/libs/tcmalloc/no_percpu_cache/aligned_alloc.c new file mode 100644 index 0000000000..b9db99adf6 --- /dev/null +++ b/contrib/libs/tcmalloc/no_percpu_cache/aligned_alloc.c @@ -0,0 +1,6 @@ +#include <malloc.h> +#include <stdlib.h> + +void* aligned_alloc(size_t alignment, size_t size) { + return memalign(alignment, size); +} diff --git a/contrib/libs/tcmalloc/tcmalloc/internal/percpu.cc b/contrib/libs/tcmalloc/tcmalloc/internal/percpu.cc index f8706f0f21..7b777d4828 100644 --- a/contrib/libs/tcmalloc/tcmalloc/internal/percpu.cc +++ b/contrib/libs/tcmalloc/tcmalloc/internal/percpu.cc @@ -19,6 +19,9 @@ #include <sys/stat.h> #include <sys/types.h> #include <syscall.h> +#if defined(__linux__) +#include <asm-generic/unistd.h> +#endif #include <unistd.h> #include <atomic> diff --git a/contrib/tools/protoc/bin/CMakeLists.linux.txt b/contrib/tools/protoc/bin/CMakeLists.linux.txt index 59419fb969..cce99f7883 100644 --- a/contrib/tools/protoc/bin/CMakeLists.linux.txt +++ b/contrib/tools/protoc/bin/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(protoc) target_link_libraries(protoc PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check contrib-libs-protoc ) diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt index 84ec725be3..c69218ab6b 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt +++ b/contrib/tools/protoc/plugins/cpp_styleguide/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(cpp_styleguide) target_link_libraries(cpp_styleguide PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check contrib-libs-protoc ) diff --git a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt index e93850280e..cca3c062db 100644 --- a/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt +++ b/contrib/tools/protoc/plugins/grpc_cpp/CMakeLists.linux.txt @@ -18,7 +18,8 @@ target_include_directories(grpc_cpp PRIVATE target_link_libraries(grpc_cpp PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check src-compiler-grpc_plugin_support ) diff --git a/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt b/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt index c1a455ac5b..40816c5559 100644 --- a/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt +++ b/library/cpp/digest/old_crc/gencrc/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(gencrc) target_link_libraries(gencrc PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check ) target_link_options(gencrc PRIVATE diff --git a/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt b/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt index 92e953f543..f5f1d4885b 100644 --- a/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt +++ b/tools/enum_parser/enum_parser/bin/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(enum_parser) target_link_libraries(enum_parser PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-getopt-small tools-enum_parser-parse_enum diff --git a/tools/rescompiler/bin/CMakeLists.linux.txt b/tools/rescompiler/bin/CMakeLists.linux.txt index 970f878c13..8fa0d787af 100644 --- a/tools/rescompiler/bin/CMakeLists.linux.txt +++ b/tools/rescompiler/bin/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(rescompiler) target_link_libraries(rescompiler PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-resource ) diff --git a/ydb/apps/ydb/CMakeLists.linux.txt b/ydb/apps/ydb/CMakeLists.linux.txt index c33fe8a036..0cc7893deb 100644 --- a/ydb/apps/ydb/CMakeLists.linux.txt +++ b/ydb/apps/ydb/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb) target_link_libraries(ydb PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check commands ) diff --git a/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt b/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt index 37a94de841..ad984648c0 100644 --- a/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt +++ b/ydb/core/actorlib_impl/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-actorlib_impl-ut PRIVATE target_link_libraries(ydb-core-actorlib_impl-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-actorlib_impl diff --git a/ydb/core/base/ut/CMakeLists.linux.txt b/ydb/core/base/ut/CMakeLists.linux.txt index c3c3fbb83d..7d9666ebe0 100644 --- a/ydb/core/base/ut/CMakeLists.linux.txt +++ b/ydb/core/base/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-base-ut PRIVATE target_link_libraries(ydb-core-base-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-base diff --git a/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt index 38d939be04..b5fb06f8c9 100644 --- a/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/backpressure/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-backpressure-ut PRIVATE target_link_libraries(ydb-core-blobstorage-backpressure-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-backpressure diff --git a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt index 0a838ec963..9753d86beb 100644 --- a/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/backpressure/ut_client/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-blobstorage-backpressure-ut_client PRIVATE target_link_libraries(ydb-core-blobstorage-backpressure-ut_client PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main actors-interconnect-mock diff --git a/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt index 5d24c12fdc..49df20841e 100644 --- a/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/base/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-base-ut PRIVATE target_link_libraries(ydb-core-blobstorage-base-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-base diff --git a/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt index 5cf26fdaf0..b075245668 100644 --- a/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/crypto/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-crypto-ut PRIVATE target_link_libraries(ydb-core-blobstorage-crypto-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-crypto diff --git a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt index 498e1f9de6..bdff919b55 100644 --- a/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/dsproxy/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-blobstorage-dsproxy-ut PRIVATE target_link_libraries(ydb-core-blobstorage-dsproxy-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-actors-core diff --git a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt index 670562e67d..8419abbec4 100644 --- a/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/dsproxy/ut_fat/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-dsproxy-ut_fat) target_link_libraries(ydb-core-blobstorage-dsproxy-ut_fat PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-actors-protos diff --git a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt index de53b9da4c..825141b735 100644 --- a/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/groupinfo/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-groupinfo-ut PRIVATE target_link_libraries(ydb-core-blobstorage-groupinfo-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-groupinfo diff --git a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt index 2d26e2e932..2ea0c97405 100644 --- a/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/incrhuge/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-incrhuge-ut) target_link_libraries(ydb-core-blobstorage-incrhuge-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-actors-protos diff --git a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt index 26233b9fb7..9c40dd66fd 100644 --- a/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/nodewarden/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-blobstorage-nodewarden-ut PRIVATE target_link_libraries(ydb-core-blobstorage-nodewarden-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-nodewarden diff --git a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt index e4491e8637..ddd10efe7f 100644 --- a/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/nodewarden/ut_sequence/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-blobstorage-nodewarden-ut_sequence PRIVATE target_link_libraries(ydb-core-blobstorage-nodewarden-ut_sequence PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-base diff --git a/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt index 8585197f2b..fba9ba0c88 100644 --- a/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/pdisk/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-pdisk-ut PRIVATE target_link_libraries(ydb-core-blobstorage-pdisk-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-blobstorage-pdisk diff --git a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt index 182faf7ca2..e88dac66b0 100644 --- a/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/storagepoolmon/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-storagepoolmon-ut) target_link_libraries(ydb-core-blobstorage-storagepoolmon-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-cpp-getopt diff --git a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt index c7a8da56f7..e0fec7255c 100644 --- a/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-ut_blobstorage) target_link_libraries(ydb-core-blobstorage-ut_blobstorage PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-base diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt index 618dea3234..eb244f825b 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_blob_depot/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-ut_blobstorage-ut_blob_depot PRI target_link_libraries(ydb-core-blobstorage-ut_blobstorage-ut_blob_depot PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-ut_blobstorage-lib diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt index 44b4c79d22..1bbccebf5d 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_group_reconfiguration/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ut_group_reconfiguration PRIVATE target_link_libraries(ut_group_reconfiguration PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-ut_blobstorage-lib diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt index 0147cb03a2..75307df2df 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_osiris/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-ut_blobstorage-ut_osiris PRIVATE target_link_libraries(ydb-core-blobstorage-ut_blobstorage-ut_osiris PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-ut_blobstorage-lib diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt index 8f24a9c541..3cbc3dec87 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_replication/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(core-blobstorage-ut_blobstorage-ut_replication PRIVAT target_link_libraries(core-blobstorage-ut_blobstorage-ut_replication PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-ut_blobstorage-lib diff --git a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt index 5e9f9de188..5723f1cde6 100644 --- a/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_blobstorage/ut_scrub/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-ut_blobstorage-ut_scrub PRIVATE target_link_libraries(ydb-core-blobstorage-ut_blobstorage-ut_scrub PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-ut_blobstorage-lib diff --git a/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt index 7bc5f6ff0d..86b0e8b25b 100644 --- a/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_group/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-ut_group) target_link_libraries(ydb-core-blobstorage-ut_group PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main actors-interconnect-mock diff --git a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt index b646340cf7..4efd1e3ccb 100644 --- a/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_mirror3of4/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-ut_mirror3of4) target_link_libraries(ydb-core-blobstorage-ut_mirror3of4 PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main actors-interconnect-mock diff --git a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt index 5de4f7ad10..fa1f80bc0e 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/pdiskfit/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(pdiskfit) target_link_libraries(pdiskfit PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-string_utils-parse_size diff --git a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt index e15920cf97..0c3a4cef1e 100644 --- a/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_pdiskfit/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-ut_pdiskfit-ut) target_link_libraries(ydb-core-blobstorage-ut_pdiskfit-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-blobstorage diff --git a/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt index b9d700cec6..309fd0ccba 100644 --- a/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_vdisk/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-blobstorage-ut_vdisk PRIVATE target_link_libraries(ydb-core-blobstorage-ut_vdisk PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-blobstorage diff --git a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt index a46ece5781..f22bb7ced0 100644 --- a/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/ut_vdisk2/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-blobstorage-ut_vdisk2) target_link_libraries(ydb-core-blobstorage-ut_vdisk2 PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-testing-unittest diff --git a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt index 965987d070..64ef65be88 100644 --- a/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/anubis_osiris/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-anubis_osiris-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-anubis_osiris-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-anubis_osiris diff --git a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt index f30cc242d7..b76e202aa3 100644 --- a/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/common/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-common-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-common-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-common diff --git a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt index 068addab89..d875fc82ca 100644 --- a/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/defrag/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-defrag-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-defrag-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-defrag diff --git a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt index a47f4ea0dc..3ba54b32c4 100644 --- a/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/huge/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-huge-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-huge-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-huge diff --git a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt index 85fa21863e..3364c7c275 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/barriers/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hulldb-barriers-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-hulldb-barriers-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main vdisk-hulldb-barriers diff --git a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt index 01ef98e938..c181d4268c 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/base/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hulldb-base-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-hulldb-base-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main vdisk-hulldb-base diff --git a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt index 50c44c98c6..7af2454021 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/compstrat/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hulldb-compstrat-ut PRIVAT target_link_libraries(ydb-core-blobstorage-vdisk-hulldb-compstrat-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main vdisk-hulldb-compstrat diff --git a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt index 2393151842..18add3278d 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/fresh/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hulldb-fresh-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-hulldb-fresh-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main vdisk-hulldb-fresh diff --git a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt index 9acf999d4c..aea9e72b82 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/generic/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hulldb-generic-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-hulldb-generic-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main vdisk-hulldb-generic diff --git a/ydb/core/blobstorage/vdisk/hulldb/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hulldb/ut/CMakeLists.linux.txt index 9ca1302eaf..0ba5d33fb4 100644 --- a/ydb/core/blobstorage/vdisk/hulldb/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hulldb/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hulldb-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-hulldb-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-hulldb diff --git a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt index e88452834d..6b549230a8 100644 --- a/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/hullop/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-hullop-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-hullop-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-hullop diff --git a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt index 1366b143b6..ed016920cb 100644 --- a/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/ingress/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-ingress-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-ingress-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-ingress diff --git a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt index 65b92b989e..2037d2487e 100644 --- a/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/query/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-query-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-query-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-query diff --git a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt index 7a5e441fb6..0798ba88c4 100644 --- a/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/repl/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-repl-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-repl-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-repl diff --git a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt index 047271bba5..bd07535b2d 100644 --- a/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/skeleton/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-skeleton-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-skeleton-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-skeleton diff --git a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt index 1af2fb86dc..025fe0998f 100644 --- a/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/syncer/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-syncer-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-syncer-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-syncer diff --git a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt index 4d467ee22e..49e7a78f1a 100644 --- a/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt +++ b/ydb/core/blobstorage/vdisk/synclog/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-blobstorage-vdisk-synclog-ut PRIVATE target_link_libraries(ydb-core-blobstorage-vdisk-synclog-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-vdisk-synclog diff --git a/ydb/core/client/metadata/ut/CMakeLists.linux.txt b/ydb/core/client/metadata/ut/CMakeLists.linux.txt index bca5009e0a..832db7e328 100644 --- a/ydb/core/client/metadata/ut/CMakeLists.linux.txt +++ b/ydb/core/client/metadata/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-client-metadata-ut PRIVATE target_link_libraries(ydb-core-client-metadata-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-client-metadata diff --git a/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt b/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt index 75a462b272..6de9959690 100644 --- a/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt +++ b/ydb/core/client/minikql_result_lib/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-client-minikql_result_lib-ut PRIVATE target_link_libraries(ydb-core-client-minikql_result_lib-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-client-minikql_result_lib diff --git a/ydb/core/client/server/ut/CMakeLists.linux.txt b/ydb/core/client/server/ut/CMakeLists.linux.txt index 1602daf50a..d87ac09ac6 100644 --- a/ydb/core/client/server/ut/CMakeLists.linux.txt +++ b/ydb/core/client/server/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-client-server-ut PRIVATE target_link_libraries(ydb-core-client-server-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-client-server diff --git a/ydb/core/client/ut/CMakeLists.linux.txt b/ydb/core/client/ut/CMakeLists.linux.txt index e246e84521..a174a02616 100644 --- a/ydb/core/client/ut/CMakeLists.linux.txt +++ b/ydb/core/client/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-client-ut PRIVATE target_link_libraries(ydb-core-client-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-client diff --git a/ydb/core/cms/console/ut/CMakeLists.linux.txt b/ydb/core/cms/console/ut/CMakeLists.linux.txt index a2fec47214..b30e2dbb6a 100644 --- a/ydb/core/cms/console/ut/CMakeLists.linux.txt +++ b/ydb/core/cms/console/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-cms-console-ut PRIVATE target_link_libraries(ydb-core-cms-console-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-cms-console diff --git a/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt b/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt index 5088ffd85e..5df8ef3e8a 100644 --- a/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt +++ b/ydb/core/cms/console/validators/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-cms-console-validators-ut PRIVATE target_link_libraries(ydb-core-cms-console-validators-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cms-console-validators diff --git a/ydb/core/cms/ut/CMakeLists.linux.txt b/ydb/core/cms/ut/CMakeLists.linux.txt index 614f43bae9..f07fb4aad4 100644 --- a/ydb/core/cms/ut/CMakeLists.linux.txt +++ b/ydb/core/cms/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-cms-ut PRIVATE target_link_libraries(ydb-core-cms-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-cms diff --git a/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt b/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt index 26957922fd..10142ee779 100644 --- a/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt +++ b/ydb/core/cms/ut_sentinel/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-cms-ut_sentinel PRIVATE target_link_libraries(ydb-core-cms-ut_sentinel PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-cms diff --git a/ydb/core/control/ut/CMakeLists.linux.txt b/ydb/core/control/ut/CMakeLists.linux.txt index 916437b57d..1f6bdbb737 100644 --- a/ydb/core/control/ut/CMakeLists.linux.txt +++ b/ydb/core/control/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-control-ut PRIVATE target_link_libraries(ydb-core-control-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-control diff --git a/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt b/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt index 38c58f1933..0216ba53ef 100644 --- a/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt +++ b/ydb/core/driver_lib/run/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-driver_lib-run-ut PRIVATE target_link_libraries(ydb-core-driver_lib-run-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main run diff --git a/ydb/core/erasure/ut/CMakeLists.linux.txt b/ydb/core/erasure/ut/CMakeLists.linux.txt index 1b0003846f..cda08b629b 100644 --- a/ydb/core/erasure/ut/CMakeLists.linux.txt +++ b/ydb/core/erasure/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-erasure-ut PRIVATE target_link_libraries(ydb-core-erasure-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-erasure diff --git a/ydb/core/erasure/ut_perf/CMakeLists.linux.txt b/ydb/core/erasure/ut_perf/CMakeLists.linux.txt index d2304375ec..09c1b9f35e 100644 --- a/ydb/core/erasure/ut_perf/CMakeLists.linux.txt +++ b/ydb/core/erasure/ut_perf/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-erasure-ut_perf PRIVATE target_link_libraries(ydb-core-erasure-ut_perf PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-erasure diff --git a/ydb/core/erasure/ut_rope/CMakeLists.linux.txt b/ydb/core/erasure/ut_rope/CMakeLists.linux.txt index 4c081c2d09..9b9ff09eef 100644 --- a/ydb/core/erasure/ut_rope/CMakeLists.linux.txt +++ b/ydb/core/erasure/ut_rope/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-erasure-ut_rope PRIVATE target_link_libraries(ydb-core-erasure-ut_rope PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-erasure diff --git a/ydb/core/formats/ut/CMakeLists.linux.txt b/ydb/core/formats/ut/CMakeLists.linux.txt index 38c63da703..28f7e2e587 100644 --- a/ydb/core/formats/ut/CMakeLists.linux.txt +++ b/ydb/core/formats/ut/CMakeLists.linux.txt @@ -18,7 +18,8 @@ target_include_directories(ydb-core-formats-ut PRIVATE target_link_libraries(ydb-core-formats-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-formats diff --git a/ydb/core/grpc_services/ut/CMakeLists.linux.txt b/ydb/core/grpc_services/ut/CMakeLists.linux.txt index a71f5302e4..79560ac6a6 100644 --- a/ydb/core/grpc_services/ut/CMakeLists.linux.txt +++ b/ydb/core/grpc_services/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-grpc_services-ut PRIVATE target_link_libraries(ydb-core-grpc_services-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-grpc_services diff --git a/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt b/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt index f679d2719a..9970af59c0 100644 --- a/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt +++ b/ydb/core/grpc_streaming/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-grpc_streaming-ut PRIVATE target_link_libraries(ydb-core-grpc_streaming-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-grpc_streaming diff --git a/ydb/core/health_check/ut/CMakeLists.linux.txt b/ydb/core/health_check/ut/CMakeLists.linux.txt index cb0ff40fb4..9d64a700e3 100644 --- a/ydb/core/health_check/ut/CMakeLists.linux.txt +++ b/ydb/core/health_check/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-health_check-ut PRIVATE target_link_libraries(ydb-core-health_check-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-health_check diff --git a/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt b/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt index 0859730c20..4d415bbecb 100644 --- a/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/kesus/proxy/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kesus-proxy-ut PRIVATE target_link_libraries(ydb-core-kesus-proxy-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kesus-proxy diff --git a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt index fcc41d7949..ba3470a24e 100644 --- a/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt +++ b/ydb/core/kesus/tablet/quoter_performance_test/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(quoter_performance_test PRIVATE target_link_libraries(quoter_performance_test PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-testing-unittest diff --git a/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt b/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt index 6949b5fab0..6cc921b804 100644 --- a/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt +++ b/ydb/core/kesus/tablet/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kesus-tablet-ut PRIVATE target_link_libraries(ydb-core-kesus-tablet-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kesus-tablet diff --git a/ydb/core/keyvalue/ut/CMakeLists.linux.txt b/ydb/core/keyvalue/ut/CMakeLists.linux.txt index a1b3c05c60..361058b8dc 100644 --- a/ydb/core/keyvalue/ut/CMakeLists.linux.txt +++ b/ydb/core/keyvalue/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-keyvalue-ut PRIVATE target_link_libraries(ydb-core-keyvalue-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-keyvalue diff --git a/ydb/core/kqp/executer/ut/CMakeLists.linux.txt b/ydb/core/kqp/executer/ut/CMakeLists.linux.txt index 757d74dca9..2847c2460a 100644 --- a/ydb/core/kqp/executer/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/executer/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-executer-ut PRIVATE target_link_libraries(ydb-core-kqp-executer-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-kqp diff --git a/ydb/core/kqp/node/ut/CMakeLists.linux.txt b/ydb/core/kqp/node/ut/CMakeLists.linux.txt index 51cb4126c6..ca29c999a9 100644 --- a/ydb/core/kqp/node/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/node/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-node-ut PRIVATE target_link_libraries(ydb-core-kqp-node-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kqp-node diff --git a/ydb/core/kqp/provider/ut/CMakeLists.linux.txt b/ydb/core/kqp/provider/ut/CMakeLists.linux.txt index 4e8d185509..c1bba85044 100644 --- a/ydb/core/kqp/provider/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/provider/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-provider-ut PRIVATE target_link_libraries(ydb-core-kqp-provider-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kqp-provider diff --git a/ydb/core/kqp/proxy/ut/CMakeLists.linux.txt b/ydb/core/kqp/proxy/ut/CMakeLists.linux.txt index b4db24fb4c..757cb07b9d 100644 --- a/ydb/core/kqp/proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/proxy/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-proxy-ut PRIVATE target_link_libraries(ydb-core-kqp-proxy-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kqp-proxy diff --git a/ydb/core/kqp/rm/ut/CMakeLists.linux.txt b/ydb/core/kqp/rm/ut/CMakeLists.linux.txt index 0c68d8f623..f7aa1aec53 100644 --- a/ydb/core/kqp/rm/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/rm/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-rm-ut PRIVATE target_link_libraries(ydb-core-kqp-rm-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kqp-rm diff --git a/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt b/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt index 213cc4c01a..193a8059cb 100644 --- a/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/runtime/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-runtime-ut PRIVATE target_link_libraries(ydb-core-kqp-runtime-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-kqp-runtime diff --git a/ydb/core/kqp/ut/CMakeLists.linux.txt b/ydb/core/kqp/ut/CMakeLists.linux.txt index 6b2f1ac11e..a5ff998756 100644 --- a/ydb/core/kqp/ut/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-ut PRIVATE target_link_libraries(ydb-core-kqp-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-kqp diff --git a/ydb/core/kqp/ut/fat/CMakeLists.linux.txt b/ydb/core/kqp/ut/fat/CMakeLists.linux.txt index 807e575e45..f372e3bf90 100644 --- a/ydb/core/kqp/ut/fat/CMakeLists.linux.txt +++ b/ydb/core/kqp/ut/fat/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-kqp-ut-fat PRIVATE target_link_libraries(ydb-core-kqp-ut-fat PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-kqp diff --git a/ydb/core/metering/ut/CMakeLists.linux.txt b/ydb/core/metering/ut/CMakeLists.linux.txt index 03d685e6ab..d920d0bf03 100644 --- a/ydb/core/metering/ut/CMakeLists.linux.txt +++ b/ydb/core/metering/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-metering-ut PRIVATE target_link_libraries(ydb-core-metering-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-metering diff --git a/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt b/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt index b500c306da..e3481d9009 100644 --- a/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/address_classification/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-mind-address_classification-ut PRIVATE target_link_libraries(ydb-core-mind-address_classification-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-mind-address_classification diff --git a/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt index 8e17cdd72d..89426cf95b 100644 --- a/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-mind-bscontroller-ut PRIVATE target_link_libraries(ydb-core-mind-bscontroller-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-mind-bscontroller diff --git a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt index 7be35bbda9..da1f7e96ed 100644 --- a/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/ut_bscontroller/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-mind-bscontroller-ut_bscontroller PRIVATE target_link_libraries(ydb-core-mind-bscontroller-ut_bscontroller PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-base diff --git a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt index 5e925574ad..c1044298a2 100644 --- a/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt +++ b/ydb/core/mind/bscontroller/ut_selfheal/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-mind-bscontroller-ut_selfheal PRIVATE target_link_libraries(ydb-core-mind-bscontroller-ut_selfheal PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main blobstorage-dsproxy-mock diff --git a/ydb/core/mind/hive/ut/CMakeLists.linux.txt b/ydb/core/mind/hive/ut/CMakeLists.linux.txt index d763a26e1b..6ee3abd052 100644 --- a/ydb/core/mind/hive/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/hive/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-mind-hive-ut PRIVATE target_link_libraries(ydb-core-mind-hive-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-mind-hive diff --git a/ydb/core/mind/ut/CMakeLists.linux.txt b/ydb/core/mind/ut/CMakeLists.linux.txt index 2a3a2b036d..bfbef7e3c7 100644 --- a/ydb/core/mind/ut/CMakeLists.linux.txt +++ b/ydb/core/mind/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-mind-ut PRIVATE target_link_libraries(ydb-core-mind-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-mind diff --git a/ydb/core/mind/ut_fat/CMakeLists.linux.txt b/ydb/core/mind/ut_fat/CMakeLists.linux.txt index 6dba6c4446..01bd8cc656 100644 --- a/ydb/core/mind/ut_fat/CMakeLists.linux.txt +++ b/ydb/core/mind/ut_fat/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-mind-ut_fat PRIVATE target_link_libraries(ydb-core-mind-ut_fat PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-mind diff --git a/ydb/core/persqueue/ut/CMakeLists.linux.txt b/ydb/core/persqueue/ut/CMakeLists.linux.txt index 974acda119..79d902da8f 100644 --- a/ydb/core/persqueue/ut/CMakeLists.linux.txt +++ b/ydb/core/persqueue/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-persqueue-ut PRIVATE target_link_libraries(ydb-core-persqueue-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-persqueue diff --git a/ydb/core/persqueue/ut_slow/CMakeLists.linux.txt b/ydb/core/persqueue/ut_slow/CMakeLists.linux.txt index 40fe947517..ca0df6ce16 100644 --- a/ydb/core/persqueue/ut_slow/CMakeLists.linux.txt +++ b/ydb/core/persqueue/ut_slow/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-persqueue-ut_slow PRIVATE target_link_libraries(ydb-core-persqueue-ut_slow PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-persqueue diff --git a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt index 44da4d7359..f374fe4590 100644 --- a/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt +++ b/ydb/core/quoter/quoter_service_bandwidth_test/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(quoter_service_bandwidth_test PRIVATE target_link_libraries(quoter_service_bandwidth_test PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-colorizer library-cpp-getopt diff --git a/ydb/core/quoter/ut/CMakeLists.linux.txt b/ydb/core/quoter/ut/CMakeLists.linux.txt index d8ac722e6b..b9b4aa78c8 100644 --- a/ydb/core/quoter/ut/CMakeLists.linux.txt +++ b/ydb/core/quoter/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-quoter-ut PRIVATE target_link_libraries(ydb-core-quoter-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-quoter diff --git a/ydb/core/scheme/ut/CMakeLists.linux.txt b/ydb/core/scheme/ut/CMakeLists.linux.txt index 619a43ed3a..010617282f 100644 --- a/ydb/core/scheme/ut/CMakeLists.linux.txt +++ b/ydb/core/scheme/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-scheme-ut PRIVATE target_link_libraries(ydb-core-scheme-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-scheme diff --git a/ydb/core/security/ut/CMakeLists.linux.txt b/ydb/core/security/ut/CMakeLists.linux.txt index 3a8f60004c..28829eb9f0 100644 --- a/ydb/core/security/ut/CMakeLists.linux.txt +++ b/ydb/core/security/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-security-ut PRIVATE target_link_libraries(ydb-core-security-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-security diff --git a/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt b/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt index 980dc9c646..133257735a 100644 --- a/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt +++ b/ydb/core/sys_view/partition_stats/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-sys_view-partition_stats-ut PRIVATE target_link_libraries(ydb-core-sys_view-partition_stats-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-sys_view-partition_stats diff --git a/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt b/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt index bbe8d45e01..6a4be7db09 100644 --- a/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt +++ b/ydb/core/sys_view/query_stats/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-sys_view-query_stats-ut PRIVATE target_link_libraries(ydb-core-sys_view-query_stats-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-sys_view-query_stats diff --git a/ydb/core/sys_view/service/ut/CMakeLists.linux.txt b/ydb/core/sys_view/service/ut/CMakeLists.linux.txt index d689d611ae..dece62cd2f 100644 --- a/ydb/core/sys_view/service/ut/CMakeLists.linux.txt +++ b/ydb/core/sys_view/service/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-sys_view-service-ut PRIVATE target_link_libraries(ydb-core-sys_view-service-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-sys_view-service diff --git a/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt b/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt index ebe61b20b3..60cbd08188 100644 --- a/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt +++ b/ydb/core/sys_view/ut_kqp/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-sys_view-ut_kqp PRIVATE target_link_libraries(ydb-core-sys_view-ut_kqp PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-sys_view diff --git a/ydb/core/tablet/ut/CMakeLists.linux.txt b/ydb/core/tablet/ut/CMakeLists.linux.txt index 4b3a80a833..68814cb1c6 100644 --- a/ydb/core/tablet/ut/CMakeLists.linux.txt +++ b/ydb/core/tablet/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tablet-ut PRIVATE target_link_libraries(ydb-core-tablet-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-tablet diff --git a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt index f227440a87..ecc16346a0 100644 --- a/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/tool/perf/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(table-perf) target_link_libraries(table-perf PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check test-libs-table library-cpp-charset diff --git a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt index 3160430e61..7912147020 100644 --- a/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/test/tool/surg/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(surg) target_link_libraries(surg PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt ydb-core-tablet_flat diff --git a/ydb/core/tablet_flat/ut/CMakeLists.linux.txt b/ydb/core/tablet_flat/ut/CMakeLists.linux.txt index 0952e071d2..86d11475bd 100644 --- a/ydb/core/tablet_flat/ut/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-tablet_flat-ut PRIVATE target_link_libraries(ydb-core-tablet_flat-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-tablet_flat diff --git a/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt b/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt index 8cabc32a13..ef49b36290 100644 --- a/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt +++ b/ydb/core/tablet_flat/ut_large/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-tablet_flat-ut_large PRIVATE target_link_libraries(ydb-core-tablet_flat-ut_large PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-tablet_flat diff --git a/ydb/core/testlib/actors/ut/CMakeLists.linux.txt b/ydb/core/testlib/actors/ut/CMakeLists.linux.txt index c5923e57e3..7893ae1be5 100644 --- a/ydb/core/testlib/actors/ut/CMakeLists.linux.txt +++ b/ydb/core/testlib/actors/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-testlib-actors-ut PRIVATE target_link_libraries(ydb-core-testlib-actors-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-testlib-actors diff --git a/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt b/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt index 8bb9d9929a..bd6824df91 100644 --- a/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/balance_coverage/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-tx-balance_coverage-ut PRIVATE target_link_libraries(ydb-core-tx-balance_coverage-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-balance_coverage diff --git a/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt b/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt index 877f004f43..15e1fbade0 100644 --- a/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/engines/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-columnshard-engines-ut PRIVATE target_link_libraries(ydb-core-tx-columnshard-engines-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main tx-columnshard-engines diff --git a/ydb/core/tx/columnshard/ut/CMakeLists.linux.txt b/ydb/core/tx/columnshard/ut/CMakeLists.linux.txt index 2c757347ec..254a9058ec 100644 --- a/ydb/core/tx/columnshard/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/columnshard/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-columnshard-ut PRIVATE target_link_libraries(ydb-core-tx-columnshard-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-columnshard diff --git a/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt b/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt index 85820f65f7..f1e03b81d9 100644 --- a/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/coordinator/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-coordinator-ut PRIVATE target_link_libraries(ydb-core-tx-coordinator-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-coordinator diff --git a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt index b2ca09e0f1..b5005b509e 100644 --- a/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_background_compaction/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_background_compaction PRIVAT target_link_libraries(ydb-core-tx-datashard-ut_background_compaction PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt index fd3d9a950c..9ae52ff09b 100644 --- a/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_build_index/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_build_index PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_build_index PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt index 25a39427e4..7edc6b3b6e 100644 --- a/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_change_collector/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_change_collector PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_change_collector PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt index 499144618c..ce0f792f15 100644 --- a/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_change_exchange/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_change_exchange PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_change_exchange PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt index 6e1902a646..f3f2e18d4d 100644 --- a/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_compaction/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_compaction PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_compaction PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt index f640570293..c1a7bf2ffa 100644 --- a/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_erase_rows/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_erase_rows PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_erase_rows PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt index 544b8728a1..17960aacb4 100644 --- a/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_followers/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_followers PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_followers PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt index 0960b78f71..b92c03f3e3 100644 --- a/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_init/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_init PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_init PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt index fa358e1ea0..ed08230860 100644 --- a/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_keys/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_keys PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_keys PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt index 0c216b1b82..1bb08498b7 100644 --- a/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_kqp/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_kqp PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_kqp PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt index b70e8c2fa1..575e718b78 100644 --- a/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_kqp_errors/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_kqp_errors PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_kqp_errors PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt index d902330f99..765928910a 100644 --- a/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_kqp_scan/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_kqp_scan PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_kqp_scan PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt index 4858170940..7ae79cc1a9 100644 --- a/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_locks/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_locks PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_locks PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt index a7d76cb9f9..cf7fb8a1ac 100644 --- a/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_minikql/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_minikql PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_minikql PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt index a0b5005c41..2d059a7cc0 100644 --- a/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_minstep/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_minstep PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_minstep PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt index 9e7e5f1b43..113f8e99af 100644 --- a/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_order/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_order PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_order PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt index bf1cf51dab..5b681c6d4f 100644 --- a/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_range_avl_tree/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_range_avl_tree PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_range_avl_tree PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt index 58a7ccbd04..000000f3ff 100644 --- a/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_range_ops/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_range_ops PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_range_ops PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt index 861199929e..50c069dfa3 100644 --- a/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_range_treap/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_range_treap PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_range_treap PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt index 31ce8ada9f..3c691ff53e 100644 --- a/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_read_iterator/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_read_iterator PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_read_iterator PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt index 136d10a21d..a077aaaa1a 100644 --- a/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_read_table/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_read_table PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_read_table PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt index 2330159d62..3e2b02d773 100644 --- a/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_reassign/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_reassign PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_reassign PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt index e36df6c138..7363d477d1 100644 --- a/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_replication/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_replication PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_replication PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt index 8c2e3cdc15..85271f600f 100644 --- a/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_rs/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_rs PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_rs PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt index 6087c093d1..8591db0cba 100644 --- a/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_snapshot/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_snapshot PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_snapshot PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt index 31b8323c0c..c8bc90d925 100644 --- a/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_stats/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_stats PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_stats PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt index 1a8c552bab..581b4a3161 100644 --- a/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt +++ b/ydb/core/tx/datashard/ut_upload_rows/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-datashard-ut_upload_rows PRIVATE target_link_libraries(ydb-core-tx-datashard-ut_upload_rows PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-datashard diff --git a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt index ae64ef4b30..ef82a0e5fc 100644 --- a/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/long_tx_service/public/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-long_tx_service-public-ut PRIVATE target_link_libraries(ydb-core-tx-long_tx_service-public-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main tx-long_tx_service-public diff --git a/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt b/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt index e75f272e30..e085e604a3 100644 --- a/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/long_tx_service/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-long_tx_service-ut PRIVATE target_link_libraries(ydb-core-tx-long_tx_service-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-long_tx_service diff --git a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt index 42298fdaae..60b2eed84e 100644 --- a/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/replication/ydb_proxy/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-replication-ydb_proxy-ut PRIVATE target_link_libraries(ydb-core-tx-replication-ydb_proxy-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main tx-replication-ydb_proxy diff --git a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt index c9e522ab33..1253a08e08 100644 --- a/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_cache/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-scheme_board-ut_cache PRIVATE target_link_libraries(ydb-core-tx-scheme_board-ut_cache PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-scheme_board diff --git a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt index 3ccbec7e76..33e9e2e537 100644 --- a/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_double_indexed/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-tx-scheme_board-ut_double_indexed PRIVATE target_link_libraries(ydb-core-tx-scheme_board-ut_double_indexed PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-scheme_board diff --git a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt index d5458a27b5..b74296f1d2 100644 --- a/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_monitoring/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-scheme_board-ut_monitoring PRIVATE target_link_libraries(ydb-core-tx-scheme_board-ut_monitoring PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-scheme_board diff --git a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt index c54e46b5c3..eaac0ff680 100644 --- a/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_populator/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-scheme_board-ut_populator PRIVATE target_link_libraries(ydb-core-tx-scheme_board-ut_populator PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-scheme_board diff --git a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt index ba42fb27a0..1e0b47b40b 100644 --- a/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_replica/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-scheme_board-ut_replica PRIVATE target_link_libraries(ydb-core-tx-scheme_board-ut_replica PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-scheme_board diff --git a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt index 610bcdacc2..bb9271a895 100644 --- a/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt +++ b/ydb/core/tx/scheme_board/ut_subscriber/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-scheme_board-ut_subscriber PRIVATE target_link_libraries(ydb-core-tx-scheme_board-ut_subscriber PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-scheme_board diff --git a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt index bd5435612f..3308fce5ea 100644 --- a/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_async_index/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_async_index PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_async_index PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt index f9277e31c1..0215b366f1 100644 --- a/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_backup/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_backup PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_backup PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt index e730172249..d50666ddb5 100644 --- a/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_base/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_base PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_base PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt index 28a57193c2..06d449f678 100644 --- a/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_base_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_base_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_base_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt index 4816ed38cc..f9d5d12d7f 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_bsvolume PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_bsvolume PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt index d27cbe1827..35cb6d7e69 100644 --- a/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_bsvolume_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_bsvolume_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_bsvolume_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt index af805d2fa6..b34c54fb45 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_cdc_stream PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_cdc_stream PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt index a92881c331..7c4e1c70df 100644 --- a/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_cdc_stream_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_cdc_stream_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_cdc_stream_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt index 4d447a1732..48cccd9ad2 100644 --- a/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_compaction/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_compaction PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_compaction PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt index ab26901491..c008c18d91 100644 --- a/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_export/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_export PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_export PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt index 562395052c..070065da3c 100644 --- a/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_export_reboots_s3/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_export_reboots_s3 PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_export_reboots_s3 PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt index 0ccf45ce7d..69f6d6915b 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_extsubdomain PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_extsubdomain PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt index feb5714a35..d1709e44b3 100644 --- a/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_extsubdomain_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_extsubdomain_reboots PRIVA target_link_libraries(ydb-core-tx-schemeshard-ut_extsubdomain_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt index 5235c605a1..5a84a7adf5 100644 --- a/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_filestore_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_filestore_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_filestore_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt index ced28b426a..5ae1ec8563 100644 --- a/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_index_build/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_index_build PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_index_build PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt index feb87d9b48..0dcdb8d4ea 100644 --- a/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_index_build_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_index_build_reboots PRIVAT target_link_libraries(ydb-core-tx-schemeshard-ut_index_build_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt index e367ee739d..319242330a 100644 --- a/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_login/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_login PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_login PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt index 9145751068..d1253db630 100644 --- a/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_move/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_move PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_move PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt index a893525731..1c83f488aa 100644 --- a/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_move_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_move_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_move_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt index 643b762284..1e1fc22fde 100644 --- a/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_olap/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_olap PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_olap PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt index db89ed59c2..7fd33fbdbc 100644 --- a/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_olap_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_olap_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_olap_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt index 5a71dc9185..b0ffde8b15 100644 --- a/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_pq/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_pq PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_pq PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt index d9807dedd6..03388e8d69 100644 --- a/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_pq_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_pq_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_pq_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt index 0e8b0db85b..c33e1f3e24 100644 --- a/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt index 44d6e53203..327db0216a 100644 --- a/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_replication/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_replication PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_replication PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt index 59f9a6ec9a..0b8510aeed 100644 --- a/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_replication_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_replication_reboots PRIVAT target_link_libraries(ydb-core-tx-schemeshard-ut_replication_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt index 738900cd3c..1a1ee2dde2 100644 --- a/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_restore/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_restore PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_restore PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt index 30f496f07f..3d5cdcc8fe 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_rtmr PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_rtmr PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt index bf4e8c6aab..982cc4b34e 100644 --- a/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_rtmr_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_rtmr_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_rtmr_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt index a25d9b63ec..449e003104 100644 --- a/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_ru_calculator/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_ru_calculator PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_ru_calculator PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt index b935058bf1..8837294a86 100644 --- a/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_sequence/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_sequence PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_sequence PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt index 48f81b8ef0..4eff1a7241 100644 --- a/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_sequence_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_sequence_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_sequence_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt index cc6b083207..d664cdc3e8 100644 --- a/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_serverless/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_serverless PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_serverless PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt index eeaa22a523..328ae8308a 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_split_merge PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_split_merge PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt index 3746e177ef..0d6581b727 100644 --- a/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_split_merge_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_split_merge_reboots PRIVAT target_link_libraries(ydb-core-tx-schemeshard-ut_split_merge_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt index a79facc46c..49492da49f 100644 --- a/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_stats/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_stats PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_stats PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt index eeeed9f39f..80630bfe74 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_subdomain PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_subdomain PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt index 45c6ed5830..244150d99c 100644 --- a/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_subdomain_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_subdomain_reboots PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_subdomain_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt index 332f7facac..8fd121e25e 100644 --- a/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_ttl/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_ttl PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_ttl PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt index 8b497ec05e..4618c2059c 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-schemeshard-ut_user_attributes PRIVATE target_link_libraries(ydb-core-tx-schemeshard-ut_user_attributes PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt index 25749f3e09..f7cfeca9f7 100644 --- a/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt +++ b/ydb/core/tx/schemeshard/ut_user_attributes_reboots/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(core-tx-schemeshard-ut_user_attributes_reboots PRIVAT target_link_libraries(core-tx-schemeshard-ut_user_attributes_reboots PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-schemeshard diff --git a/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt b/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt index 63eba97ad1..d3fbb0f4e1 100644 --- a/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceproxy/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-sequenceproxy-ut PRIVATE target_link_libraries(ydb-core-tx-sequenceproxy-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-sequenceproxy diff --git a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt index 29aee1137c..d62dd2ee2d 100644 --- a/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceshard/public/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-sequenceshard-public-ut PRIVATE target_link_libraries(ydb-core-tx-sequenceshard-public-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main tx-sequenceshard-public diff --git a/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt b/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt index 306bcd1b1a..0cc490d5cf 100644 --- a/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/sequenceshard/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-sequenceshard-ut PRIVATE target_link_libraries(ydb-core-tx-sequenceshard-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-sequenceshard diff --git a/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt b/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt index 05ccf5afe9..7dcf54b6f1 100644 --- a/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/time_cast/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-time_cast-ut PRIVATE target_link_libraries(ydb-core-tx-time_cast-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-time_cast diff --git a/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt b/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt index 52ef0c379e..6c798b1371 100644 --- a/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_allocator/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-tx_allocator-ut PRIVATE target_link_libraries(ydb-core-tx-tx_allocator-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-tx_allocator diff --git a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt index bf0b9693dd..c2f69a88c4 100644 --- a/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_allocator_client/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-tx_allocator_client-ut PRIVATE target_link_libraries(ydb-core-tx-tx_allocator_client-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-tx_allocator_client diff --git a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt index 0ee0fd917c..0e44e65e5d 100644 --- a/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_base_tenant/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-tx_proxy-ut_base_tenant PRIVATE target_link_libraries(ydb-core-tx-tx_proxy-ut_base_tenant PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-tx_proxy diff --git a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt index 58ec01b8fc..e05854e508 100644 --- a/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_encrypted_storage/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-tx_proxy-ut_encrypted_storage PRIVATE target_link_libraries(ydb-core-tx-tx_proxy-ut_encrypted_storage PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-tx_proxy diff --git a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt index 5ad927f031..c56589fbd0 100644 --- a/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_ext_tenant/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-tx_proxy-ut_ext_tenant PRIVATE target_link_libraries(ydb-core-tx-tx_proxy-ut_ext_tenant PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-tx_proxy diff --git a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt index 41f0c31f82..f02b120c77 100644 --- a/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt +++ b/ydb/core/tx/tx_proxy/ut_storage_tenant/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-tx-tx_proxy-ut_storage_tenant PRIVATE target_link_libraries(ydb-core-tx-tx_proxy-ut_storage_tenant PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-tx-tx_proxy diff --git a/ydb/core/util/ut/CMakeLists.linux.txt b/ydb/core/util/ut/CMakeLists.linux.txt index 938aca87b3..8e78674cd8 100644 --- a/ydb/core/util/ut/CMakeLists.linux.txt +++ b/ydb/core/util/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-util-ut PRIVATE target_link_libraries(ydb-core-util-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-util diff --git a/ydb/core/viewer/ut/CMakeLists.linux.txt b/ydb/core/viewer/ut/CMakeLists.linux.txt index eb0b3f3ff2..bd8010e7dd 100644 --- a/ydb/core/viewer/ut/CMakeLists.linux.txt +++ b/ydb/core/viewer/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-viewer-ut PRIVATE target_link_libraries(ydb-core-viewer-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-viewer diff --git a/ydb/core/wrappers/ut/CMakeLists.linux.txt b/ydb/core/wrappers/ut/CMakeLists.linux.txt index e5dd12b60a..f6c7a13d97 100644 --- a/ydb/core/wrappers/ut/CMakeLists.linux.txt +++ b/ydb/core/wrappers/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-wrappers-ut PRIVATE target_link_libraries(ydb-core-wrappers-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-wrappers diff --git a/ydb/core/ydb_convert/ut/CMakeLists.linux.txt b/ydb/core/ydb_convert/ut/CMakeLists.linux.txt index 671a6a97b6..f7d44c21e0 100644 --- a/ydb/core/ydb_convert/ut/CMakeLists.linux.txt +++ b/ydb/core/ydb_convert/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-ydb_convert-ut PRIVATE target_link_libraries(ydb-core-ydb_convert-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-ydb_convert diff --git a/ydb/core/ymq/actor/ut/CMakeLists.linux.txt b/ydb/core/ymq/actor/ut/CMakeLists.linux.txt index 8e50984759..ecbcfdfd97 100644 --- a/ydb/core/ymq/actor/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/actor/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-ymq-actor-ut PRIVATE target_link_libraries(ydb-core-ymq-actor-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main contrib-libs-yaml-cpp diff --git a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt index 0bebcf40fa..d707140eaa 100644 --- a/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/actor/yc_search_ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(ydb-core-ymq-actor-yc_search_ut PRIVATE target_link_libraries(ydb-core-ymq-actor-yc_search_ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-testlib diff --git a/ydb/core/ymq/base/ut/CMakeLists.linux.txt b/ydb/core/ymq/base/ut/CMakeLists.linux.txt index 5a144fe399..ae46eb1a60 100644 --- a/ydb/core/ymq/base/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/base/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-ymq-base-ut) target_link_libraries(ydb-core-ymq-base-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-core-base diff --git a/ydb/core/ymq/client/bin/CMakeLists.linux.txt b/ydb/core/ymq/client/bin/CMakeLists.linux.txt index 2e1e66b3a6..1ef3983464 100644 --- a/ydb/core/ymq/client/bin/CMakeLists.linux.txt +++ b/ydb/core/ymq/client/bin/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(sqs) target_link_libraries(sqs PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt ymq-client-cpp diff --git a/ydb/core/ymq/http/ut/CMakeLists.linux.txt b/ydb/core/ymq/http/ut/CMakeLists.linux.txt index 61a1fe7fcd..681262e745 100644 --- a/ydb/core/ymq/http/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/http/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-ymq-http-ut) target_link_libraries(ydb-core-ymq-http-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-ymq-http diff --git a/ydb/core/ymq/ut/CMakeLists.linux.txt b/ydb/core/ymq/ut/CMakeLists.linux.txt index 031766b93a..708df5ac01 100644 --- a/ydb/core/ymq/ut/CMakeLists.linux.txt +++ b/ydb/core/ymq/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-core-ymq-ut) target_link_libraries(ydb-core-ymq-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main core-ymq-base diff --git a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt index 475ba9c89a..f41a4b1ebf 100644 --- a/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/checkpointing/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-yq-libs-checkpointing-ut PRIVATE target_link_libraries(ydb-core-yq-libs-checkpointing-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-checkpointing diff --git a/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt index f8ab994a02..e88687e45e 100644 --- a/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/common/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-yq-libs-common-ut PRIVATE target_link_libraries(ydb-core-yq-libs-common-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-common diff --git a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt index 2bd15b6cf3..3a0132a926 100644 --- a/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/control_plane_proxy/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-yq-libs-control_plane_proxy-ut PRIVATE target_link_libraries(ydb-core-yq-libs-control_plane_proxy-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-control_plane_proxy diff --git a/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt index 6319e0a1a2..5b41f5861a 100644 --- a/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/hmac/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-yq-libs-hmac-ut PRIVATE target_link_libraries(ydb-core-yq-libs-hmac-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-hmac diff --git a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt index affede97de..95a3427c68 100644 --- a/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/result_formatter/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-yq-libs-result_formatter-ut PRIVATE target_link_libraries(ydb-core-yq-libs-result_formatter-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-result_formatter diff --git a/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt index 885aa74ac4..ea5c41bbcb 100644 --- a/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/signer/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-core-yq-libs-signer-ut PRIVATE target_link_libraries(ydb-core-yq-libs-signer-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-signer diff --git a/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt b/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt index e08c7a31db..cab934212c 100644 --- a/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt +++ b/ydb/core/yq/libs/test_connection/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-core-yq-libs-test_connection-ut PRIVATE target_link_libraries(ydb-core-yq-libs-test_connection-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yq-libs-control_plane_proxy diff --git a/ydb/library/aclib/ut/CMakeLists.linux.txt b/ydb/library/aclib/ut/CMakeLists.linux.txt index c03920f6a2..bf1d0dbf20 100644 --- a/ydb/library/aclib/ut/CMakeLists.linux.txt +++ b/ydb/library/aclib/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-aclib-ut PRIVATE target_link_libraries(ydb-library-aclib-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-aclib diff --git a/ydb/library/backup/ut/CMakeLists.linux.txt b/ydb/library/backup/ut/CMakeLists.linux.txt index b5d06371a5..4362745fde 100644 --- a/ydb/library/backup/ut/CMakeLists.linux.txt +++ b/ydb/library/backup/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-backup-ut PRIVATE target_link_libraries(ydb-library-backup-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main kikimr_backup diff --git a/ydb/library/binary_json/ut/CMakeLists.linux.txt b/ydb/library/binary_json/ut/CMakeLists.linux.txt index 534ea2ea0c..8796b152d0 100644 --- a/ydb/library/binary_json/ut/CMakeLists.linux.txt +++ b/ydb/library/binary_json/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-binary_json-ut PRIVATE target_link_libraries(ydb-library-binary_json-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-binary_json diff --git a/ydb/library/dynumber/ut/CMakeLists.linux.txt b/ydb/library/dynumber/ut/CMakeLists.linux.txt index b5f56c475b..8f94a9834f 100644 --- a/ydb/library/dynumber/ut/CMakeLists.linux.txt +++ b/ydb/library/dynumber/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-dynumber-ut PRIVATE target_link_libraries(ydb-library-dynumber-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-dynumber diff --git a/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt b/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt index 50e89891ed..1b2d0033fc 100644 --- a/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt +++ b/ydb/library/http_proxy/authorization/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-http_proxy-authorization-ut PRIVATE target_link_libraries(ydb-library-http_proxy-authorization-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-http_proxy-authorization diff --git a/ydb/library/keys/ut/CMakeLists.linux.txt b/ydb/library/keys/ut/CMakeLists.linux.txt index 694aba85ac..84538e1692 100644 --- a/ydb/library/keys/ut/CMakeLists.linux.txt +++ b/ydb/library/keys/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-keys-ut PRIVATE target_link_libraries(ydb-library-keys-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-keys diff --git a/ydb/library/login/ut/CMakeLists.linux.txt b/ydb/library/login/ut/CMakeLists.linux.txt index 2342b4379f..4d2ac96468 100644 --- a/ydb/library/login/ut/CMakeLists.linux.txt +++ b/ydb/library/login/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-login-ut PRIVATE target_link_libraries(ydb-library-login-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-login diff --git a/ydb/library/naming_conventions/ut/CMakeLists.linux.txt b/ydb/library/naming_conventions/ut/CMakeLists.linux.txt index d3fbb36253..ea4170f216 100644 --- a/ydb/library/naming_conventions/ut/CMakeLists.linux.txt +++ b/ydb/library/naming_conventions/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-naming_conventions-ut PRIVATE target_link_libraries(ydb-library-naming_conventions-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-naming_conventions diff --git a/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt b/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt index 4e589bf606..ae8f878cd1 100644 --- a/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt +++ b/ydb/library/persqueue/topic_parser/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-persqueue-topic_parser-ut PRIVATE target_link_libraries(ydb-library-persqueue-topic_parser-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-persqueue-topic_parser diff --git a/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt b/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt index 8a0e172d2e..cc0c03a04a 100644 --- a/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt +++ b/ydb/library/protobuf_printer/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-protobuf_printer-ut PRIVATE target_link_libraries(ydb-library-protobuf_printer-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-protobuf_printer diff --git a/ydb/library/schlab/mon/test/CMakeLists.linux.txt b/ydb/library/schlab/mon/test/CMakeLists.linux.txt index 109638c3ce..7c7b43a4d8 100644 --- a/ydb/library/schlab/mon/test/CMakeLists.linux.txt +++ b/ydb/library/schlab/mon/test/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(mon-test) target_link_libraries(mon-test PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-resource library-cpp-getopt diff --git a/ydb/library/schlab/ut/CMakeLists.linux.txt b/ydb/library/schlab/ut/CMakeLists.linux.txt index ff3811bbf2..6f3a7724c2 100644 --- a/ydb/library/schlab/ut/CMakeLists.linux.txt +++ b/ydb/library/schlab/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-library-schlab-ut) target_link_libraries(ydb-library-schlab-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-schlab-schoot diff --git a/ydb/library/security/ut/CMakeLists.linux.txt b/ydb/library/security/ut/CMakeLists.linux.txt index 4ecd7f78e7..ac969e5947 100644 --- a/ydb/library/security/ut/CMakeLists.linux.txt +++ b/ydb/library/security/ut/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ydb-library-security-ut) target_link_libraries(ydb-library-security-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-library-security diff --git a/ydb/library/yql/ast/ut/CMakeLists.linux.txt b/ydb/library/yql/ast/ut/CMakeLists.linux.txt index d135262a17..c8461f70c4 100644 --- a/ydb/library/yql/ast/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/ast/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-ast-ut PRIVATE target_link_libraries(ydb-library-yql-ast-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-yql-ast diff --git a/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt b/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt index ae8ca3babd..3c6b4caa57 100644 --- a/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/core/file_storage/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-core-file_storage-ut PRIVATE target_link_libraries(ydb-library-yql-core-file_storage-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-core-file_storage diff --git a/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt b/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt index 9dfc528d1b..e368354b9f 100644 --- a/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/core/issue/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-core-issue-ut PRIVATE target_link_libraries(ydb-library-yql-core-issue-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-core-issue diff --git a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt index 43a761bf3f..3b6d0fa046 100644 --- a/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/actors/compute/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-dq-actors-compute-ut PRIVATE target_link_libraries(ydb-library-yql-dq-actors-compute-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main dq-actors-compute diff --git a/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt b/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt index 4ec1e188ec..ea8626d082 100644 --- a/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/runtime/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-dq-runtime-ut PRIVATE target_link_libraries(ydb-library-yql-dq-runtime-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-dq-runtime diff --git a/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt b/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt index c5d6e78b33..f5d68fb60b 100644 --- a/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/dq/state/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-dq-state-ut PRIVATE target_link_libraries(ydb-library-yql-dq-state-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-dq-state diff --git a/ydb/library/yql/minikql/ut/CMakeLists.linux.txt b/ydb/library/yql/minikql/ut/CMakeLists.linux.txt index ab94ec10f3..fdd3a5d0b1 100644 --- a/ydb/library/yql/minikql/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/minikql/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-minikql-ut PRIVATE target_link_libraries(ydb-library-yql-minikql-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-yql-minikql diff --git a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt index dadba7fe1b..9ad1d95e7f 100644 --- a/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/lexer_common/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-parser-lexer_common-ut PRIVATE target_link_libraries(ydb-library-yql-parser-lexer_common-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-parser-lexer_common diff --git a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt index c8048f4846..1bd3097133 100644 --- a/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/parser/pg_catalog/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-parser-pg_catalog-ut PRIVATE target_link_libraries(ydb-library-yql-parser-pg_catalog-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-parser-pg_catalog diff --git a/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt index 39a79b4727..af72925dc4 100644 --- a/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/codec/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-providers-common-codec-ut PRIVATE target_link_libraries(ydb-library-yql-providers-common-codec-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main providers-common-codec diff --git a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt index 61170dd337..a9b990bad3 100644 --- a/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/providers/common/structured_token/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(yql-providers-common-structured_token-ut PRIVATE target_link_libraries(yql-providers-common-structured_token-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main providers-common-structured_token diff --git a/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt b/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt index 3003ea6be0..432740e1c9 100644 --- a/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/public/decimal/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-public-decimal-ut PRIVATE target_link_libraries(ydb-library-yql-public-decimal-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-public-decimal diff --git a/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt b/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt index 3248569a48..fd1415fd12 100644 --- a/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/public/issue/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-public-issue-ut PRIVATE target_link_libraries(ydb-library-yql-public-issue-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-public-issue diff --git a/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt b/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt index 414a7e3dca..752eef09eb 100644 --- a/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/public/udf/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-public-udf-ut PRIVATE target_link_libraries(ydb-library-yql-public-udf-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-public-udf diff --git a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt index a041d33616..59d0f98df1 100644 --- a/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/stat/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-udfs-common-stat-ut PRIVATE target_link_libraries(ydb-library-yql-udfs-common-stat-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main common-stat-static diff --git a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt index 4280260819..781ddbd386 100644 --- a/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/udfs/common/topfreq/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-library-yql-udfs-common-topfreq-ut PRIVATE target_link_libraries(ydb-library-yql-udfs-common-topfreq-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main common-topfreq-static diff --git a/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt index 341f75abc9..efbdcff7e7 100644 --- a/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/actors/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-utils-actors-ut PRIVATE target_link_libraries(ydb-library-yql-utils-actors-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-utils-actors diff --git a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt index fad19e9c24..033d78e8ab 100644 --- a/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/failure_injector/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-utils-failure_injector-ut PRIVATE target_link_libraries(ydb-library-yql-utils-failure_injector-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-utils-failure_injector diff --git a/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt index f0f843fc3a..7ad9a1c8e7 100644 --- a/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/log/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-utils-log-ut PRIVATE target_link_libraries(ydb-library-yql-utils-log-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main yql-utils-log diff --git a/ydb/library/yql/utils/ut/CMakeLists.linux.txt b/ydb/library/yql/utils/ut/CMakeLists.linux.txt index 191e9b06db..3682aa7381 100644 --- a/ydb/library/yql/utils/ut/CMakeLists.linux.txt +++ b/ydb/library/yql/utils/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-library-yql-utils-ut PRIVATE target_link_libraries(ydb-library-yql-utils-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main library-yql-utils diff --git a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt index 7e8d3f2efa..359e81eee8 100644 --- a/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/deprecated/kicli/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-public-lib-deprecated-kicli-ut PRIVATE target_link_libraries(ydb-public-lib-deprecated-kicli-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main lib-deprecated-kicli diff --git a/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt b/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt index dd0a865e2c..130c61395a 100644 --- a/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/idx_test/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-lib-idx_test-ut PRIVATE target_link_libraries(ydb-public-lib-idx_test-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main public-lib-idx_test diff --git a/ydb/public/lib/json_value/ut/CMakeLists.linux.txt b/ydb/public/lib/json_value/ut/CMakeLists.linux.txt index 7ca6f3799e..f4872a1d16 100644 --- a/ydb/public/lib/json_value/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/json_value/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-lib-json_value-ut PRIVATE target_link_libraries(ydb-public-lib-json_value-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main public-lib-json_value diff --git a/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt b/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt index 649b8a2241..8b9382c51d 100644 --- a/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/operation_id/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-lib-operation_id-ut PRIVATE target_link_libraries(ydb-public-lib-operation_id-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main public-lib-operation_id diff --git a/ydb/public/lib/validation/CMakeLists.linux.txt b/ydb/public/lib/validation/CMakeLists.linux.txt index d59f72ecf5..ce93be5a66 100644 --- a/ydb/public/lib/validation/CMakeLists.linux.txt +++ b/ydb/public/lib/validation/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(validation) target_link_libraries(validation PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check contrib-libs-protoc api-protos-annotations diff --git a/ydb/public/lib/validation/ut/CMakeLists.linux.txt b/ydb/public/lib/validation/ut/CMakeLists.linux.txt index 2fc223d436..2c016f9238 100644 --- a/ydb/public/lib/validation/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/validation/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-lib-validation-ut PRIVATE target_link_libraries(ydb-public-lib-validation-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-testing-unittest diff --git a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt index 13ac987c91..db22a257d8 100644 --- a/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt +++ b/ydb/public/lib/ydb_cli/common/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-lib-ydb_cli-common-ut PRIVATE target_link_libraries(ydb-public-lib-ydb_cli-common-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main common diff --git a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt index 16b48b7d5e..5a76aee33d 100644 --- a/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/draft/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-draft-ut PRIVATE target_link_libraries(ydb-public-sdk-cpp-client-draft-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-draft diff --git a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt index 7bf2acd2be..84f4dca14c 100644 --- a/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/extensions/discovery_mutator/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(client-extensions-discovery_mutator-ut PRIVATE target_link_libraries(client-extensions-discovery_mutator-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main client-extensions-discovery_mutator diff --git a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt index b9fc1ccc23..f4b7b8da67 100644 --- a/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/impl/ydb_endpoints/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-impl-ydb_endpoints-ut PRIVA target_link_libraries(ydb-public-sdk-cpp-client-impl-ydb_endpoints-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main client-impl-ydb_endpoints diff --git a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt index 832ef6b2bc..e99ee10273 100644 --- a/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_coordination/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-ydb_coordination-ut PRIVATE target_link_libraries(ydb-public-sdk-cpp-client-ydb_coordination-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-ydb_coordination diff --git a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt index f2b7d90752..523a20fc05 100644 --- a/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_driver/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-ydb_driver-ut PRIVATE target_link_libraries(ydb-public-sdk-cpp-client-ydb_driver-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-ydb_driver diff --git a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt index a6d0729563..6b01b8557a 100644 --- a/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_params/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-ydb_params-ut PRIVATE target_link_libraries(ydb-public-sdk-cpp-client-ydb_params-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-ydb_params diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt index c7bef70788..83e39b61d9 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-public-sdk-cpp-client-ydb_persqueue_core-ut PRIVA target_link_libraries(ydb-public-sdk-cpp-client-ydb_persqueue_core-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-ydb_persqueue_core diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt index 7d24762c47..b1134e6c96 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_compile_options(with_offset_ranges_mode_ut PRIVATE target_link_libraries(with_offset_ranges_mode_ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-testing-gmock_in_unittest diff --git a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt index 74b253700d..ff8c934961 100644 --- a/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_result/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-ydb_result-ut PRIVATE target_link_libraries(ydb-public-sdk-cpp-client-ydb_result-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-ydb_result diff --git a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt index ec810e9a4e..30da200a8e 100644 --- a/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/client/ydb_value/ut/CMakeLists.linux.txt @@ -14,7 +14,8 @@ target_include_directories(ydb-public-sdk-cpp-client-ydb_value-ut PRIVATE target_link_libraries(ydb-public-sdk-cpp-client-ydb_value-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-client-ydb_value diff --git a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt index a73a2f51dc..4e60753c61 100644 --- a/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/basic_example/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(basic_example) target_link_libraries(basic_example PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-client-ydb_table diff --git a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt index 47bfb4b397..5f9953c0c6 100644 --- a/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/bulk_upsert_simple/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(bulk_upsert_simple) target_link_libraries(bulk_upsert_simple PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-client-ydb_table diff --git a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt index 5aa9d59f56..2c1b8e095c 100644 --- a/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/pagination/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(pagination) target_link_libraries(pagination PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-client-ydb_table diff --git a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt index 3305fb851f..66888ea277 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(secondary_index) target_link_libraries(secondary_index PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-client-ydb_table diff --git a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt index 461bbcda41..a0672e99c7 100644 --- a/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/secondary_index_builtin/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(secondary_index_builtin) target_link_libraries(secondary_index_builtin PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-client-ydb_table diff --git a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt index e3997c1cba..a4477c08d9 100644 --- a/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt +++ b/ydb/public/sdk/cpp/examples/ttl/CMakeLists.linux.txt @@ -11,7 +11,8 @@ add_executable(ttl) target_link_libraries(ttl PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check library-cpp-getopt cpp-client-ydb_table diff --git a/ydb/services/cms/ut/CMakeLists.linux.txt b/ydb/services/cms/ut/CMakeLists.linux.txt index 9771f8b028..cece96b6ea 100644 --- a/ydb/services/cms/ut/CMakeLists.linux.txt +++ b/ydb/services/cms/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-cms-ut PRIVATE target_link_libraries(ydb-services-cms-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-cms diff --git a/ydb/services/datastreams/ut/CMakeLists.linux.txt b/ydb/services/datastreams/ut/CMakeLists.linux.txt index ed3037bf43..cb7b1ba80e 100644 --- a/ydb/services/datastreams/ut/CMakeLists.linux.txt +++ b/ydb/services/datastreams/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-datastreams-ut PRIVATE target_link_libraries(ydb-services-datastreams-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-datastreams diff --git a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt index d66d7a05ec..0625cbb15e 100644 --- a/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt +++ b/ydb/services/persqueue_cluster_discovery/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-persqueue_cluster_discovery-ut PRIVATE target_link_libraries(ydb-services-persqueue_cluster_discovery-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-persqueue_cluster_discovery diff --git a/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt b/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt index 74be2f6f6d..f8fe0dd9bd 100644 --- a/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt +++ b/ydb/services/persqueue_v1/ut/CMakeLists.linux.txt @@ -18,7 +18,8 @@ target_include_directories(ydb-services-persqueue_v1-ut PRIVATE target_link_libraries(ydb-services-persqueue_v1-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-persqueue_v1 diff --git a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt index b313ae591e..aef458b518 100644 --- a/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt +++ b/ydb/services/persqueue_v1/ut/new_schemecache_ut/CMakeLists.linux.txt @@ -18,7 +18,8 @@ target_include_directories(ydb-services-persqueue_v1-ut-new_schemecache_ut PRIVA target_link_libraries(ydb-services-persqueue_v1-ut-new_schemecache_ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-persqueue_v1 diff --git a/ydb/services/rate_limiter/ut/CMakeLists.linux.txt b/ydb/services/rate_limiter/ut/CMakeLists.linux.txt index 1b16004af3..29ed380447 100644 --- a/ydb/services/rate_limiter/ut/CMakeLists.linux.txt +++ b/ydb/services/rate_limiter/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-rate_limiter-ut PRIVATE target_link_libraries(ydb-services-rate_limiter-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-rate_limiter diff --git a/ydb/services/ydb/index_ut/CMakeLists.linux.txt b/ydb/services/ydb/index_ut/CMakeLists.linux.txt index 09575d700f..ba32415c3f 100644 --- a/ydb/services/ydb/index_ut/CMakeLists.linux.txt +++ b/ydb/services/ydb/index_ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-ydb-index_ut PRIVATE target_link_libraries(ydb-services-ydb-index_ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-ydb diff --git a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt index 08eba17494..6574233dbd 100644 --- a/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt +++ b/ydb/services/ydb/sdk_credprovider_ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-ydb-sdk_credprovider_ut PRIVATE target_link_libraries(ydb-services-ydb-sdk_credprovider_ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-ydb diff --git a/ydb/services/ydb/ut/CMakeLists.linux.txt b/ydb/services/ydb/ut/CMakeLists.linux.txt index 9f789f2954..ee3e483c54 100644 --- a/ydb/services/ydb/ut/CMakeLists.linux.txt +++ b/ydb/services/ydb/ut/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-ydb-ut PRIVATE target_link_libraries(ydb-services-ydb-ut PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-ydb diff --git a/ydb/services/yq/ut_integration/CMakeLists.linux.txt b/ydb/services/yq/ut_integration/CMakeLists.linux.txt index 0ff91c894f..7a27e02833 100644 --- a/ydb/services/yq/ut_integration/CMakeLists.linux.txt +++ b/ydb/services/yq/ut_integration/CMakeLists.linux.txt @@ -17,7 +17,8 @@ target_include_directories(ydb-services-yq-ut_integration PRIVATE target_link_libraries(ydb-services-yq-ut_integration PUBLIC contrib-libs-cxxsupp yutil - library-cpp-lfalloc + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main ydb-services-yq |