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 28a35fd2332..d6c85a76b22 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 abea1fbd057..b08ed80d19d 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 875a0af01f5..d5ef10a5347 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 00000000000..2144bdb09a2 --- /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 00000000000..c031ddb850e --- /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 00000000000..b9db99adf6e --- /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 f8706f0f212..7b777d48280 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 59419fb9693..cce99f78838 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 84ec725be34..c69218ab6b3 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 e93850280eb..cca3c062db8 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 c1a455ac5ba..40816c5559c 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 92e953f543a..f5f1d4885bc 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 970f878c13c..8fa0d787afb 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 c33fe8a0362..0cc7893deb9 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 37a94de841f..ad984648c01 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 c3c3fbb83d9..7d9666ebe07 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 38d939be04c..b5fb06f8c9f 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 0a838ec9631..9753d86beba 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 5d24c12fdc6..49df20841ed 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 5cf26fdaf07..b075245668a 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 498e1f9de63..bdff919b557 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 670562e67db..8419abbec4e 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 de53b9da4c6..825141b7358 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 2d26e2e9321..2ea0c97405b 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 26233b9fb76..9c40dd66fd6 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 e4491e8637d..ddd10efe7fd 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 8585197f2b1..fba9ba0c888 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 182faf7ca23..e88dac66b06 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 c7a8da56f7d..e0fec7255c8 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 618dea3234f..eb244f825b7 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 44b4c79d227..1bbccebf5d4 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 0147cb03a24..75307df2df3 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 8f24a9c5411..3cbc3dec870 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 5e9f9de1885..5723f1cde65 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 7bc5f6ff0d5..86b0e8b25be 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 b646340cf7a..4efd1e3ccb2 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 5de4f7ad102..fa1f80bc0eb 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 e15920cf97a..0c3a4cef1e8 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 b9d700cec6e..309fd0ccbad 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 a46ece5781d..f22bb7ced0c 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 965987d0701..64ef65be88d 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 f30cc242d71..b76e202aa30 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 068addab89f..d875fc82ca8 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 a47f4ea0dc4..3ba54b32c44 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 85fa21863ef..3364c7c2752 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 01ef98e9386..c181d4268c5 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 50c44c98c64..7af2454021b 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 23931518425..18add3278d2 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 9acf999d4ca..aea9e72b82c 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 9ca1302eaff..0ba5d33fb4c 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 e88452834d2..6b549230a8b 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 1366b143b62..ed016920cb2 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 65b92b989eb..2037d2487e3 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 7a5e441fb63..0798ba88c4c 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 047271bba56..bd07535b2d4 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 1af2fb86dcc..025fe0998fa 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 4d467ee22e2..49e7a78f1a5 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 bca5009e0aa..832db7e3281 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 75a462b272f..6de99596903 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 1602daf50a6..d87ac09ac67 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 e246e845213..a174a026163 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 a2fec47214e..b30e2dbb6a5 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 5088ffd85e0..5df8ef3e8af 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 614f43bae90..f07fb4aad4f 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 26957922fd2..10142ee779c 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 916437b57d0..1f6bdbb7379 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 38c58f1933d..0216ba53efe 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 1b0003846ff..cda08b629be 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 d2304375ec1..09c1b9f35ee 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 4c081c2d09a..9b9ff09eefa 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 38c63da7034..28f7e2e587f 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 a71f5302e4a..79560ac6a68 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 f679d2719ab..9970af59c02 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 cb0ff40fb43..9d64a700e31 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 0859730c207..4d415bbecb4 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 fcc41d7949c..ba3470a24ee 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 6949b5fab04..6cc921b804d 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 a1b3c05c609..361058b8dc9 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 757d74dca92..2847c2460a2 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 51cb4126c6f..ca29c999a9a 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 4e8d185509c..c1bba850449 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 b4db24fb4c6..757cb07b9d2 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 0c68d8f623e..f7aa1aec538 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 213cc4c01a3..193a8059cb0 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 6b2f1ac11e6..a5ff998756e 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 807e575e458..f372e3bf900 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 03d685e6abb..d920d0bf030 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 b500c306da1..e3481d90092 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 8e17cdd72dd..89426cf95b8 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 7be35bbda90..da1f7e96ede 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 5e925574ada..c1044298a2a 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 d763a26e1b5..6ee3abd0529 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 2a3a2b036d2..bfbef7e3c7c 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 6dba6c44460..01bd8cc6566 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 974acda119a..79d902da8fe 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 40fe947517c..ca0df6ce164 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 44da4d73599..f374fe45901 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 d8ac722e6b5..b9b4aa78c8d 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 619a43ed3ab..010617282f5 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 3a8f60004c1..28829eb9f01 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 980dc9c6468..133257735a1 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 bbe8d45e017..6a4be7db09d 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 d689d611aeb..dece62cd2fd 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 ebe61b20b3a..60cbd08188a 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 4b3a80a8337..68814cb1c61 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 f227440a875..ecc16346a04 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 3160430e615..79121470203 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 0952e071d21..86d11475bd2 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 8cabc32a131..ef49b36290e 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 c5923e57e3a..7893ae1be5a 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 8bb9d9929a7..bd6824df917 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 877f004f43e..15e1fbade0c 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 2c757347ecf..254a9058ecc 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 85820f65f73..f1e03b81d94 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 b2ca09e0f15..b5005b509eb 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 fd3d9a950c6..9ae52ff09bc 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 25a39427e4a..7edc6b3b6e2 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 499144618cd..ce0f792f15f 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 6e1902a6467..f3f2e18d4df 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 f6405702934..c1a7bf2ffa5 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 544b8728a1b..17960aacb4e 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 0960b78f71c..b92c03f3e33 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 fa358e1ea08..ed082308602 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 0c216b1b828..1bb08498b77 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 b70e8c2fa13..575e718b784 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 d902330f999..765928910a2 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 4858170940f..7ae79cc1a90 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 a7d76cb9f9f..cf7fb8a1ac3 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 a0b5005c414..2d059a7cc0e 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 9e7e5f1b43b..113f8e99af2 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 bf1cf51dabd..5b681c6d4fc 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 58a7ccbd04e..000000f3ff0 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 861199929eb..50c069dfa39 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 31ce8ada9f7..3c691ff53e1 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 136d10a21d9..a077aaaa1ac 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 2330159d62f..3e2b02d7739 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 e36df6c1387..7363d477d11 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 8c2e3cdc15a..85271f600f5 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 6087c093d1c..8591db0cba4 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 31b8323c0c5..c8bc90d9258 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 1a8c552baba..581b4a31611 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 ae64ef4b304..ef82a0e5fcd 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 e75f272e30d..e085e604a31 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 42298fdaae9..60b2eed84eb 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 c9e522ab33e..1253a08e080 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 3ccbec7e763..33e9e2e5372 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 d5458a27b5a..b74296f1d28 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 c54e46b5c36..eaac0ff6808 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 ba42fb27a02..1e0b47b40b1 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 610bcdacc2d..bb9271a895e 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 bd5435612ff..3308fce5eab 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 f9277e31c17..0215b366f17 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 e730172249a..d50666ddb55 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 28a57193c28..06d449f6785 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 4816ed38cc5..f9d5d12d7f3 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 d27cbe18275..35cb6d7e695 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 af805d2fa6b..b34c54fb45a 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 a92881c3319..7c4e1c70df0 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 4d447a1732d..48cccd9ad29 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 ab26901491d..c008c18d915 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 562395052c7..070065da3ca 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 0ccf45ce7de..69f6d6915b1 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 feb5714a359..d1709e44b38 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 5235c605a1b..5a84a7adf55 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 ced28b426a4..5ae1ec8563e 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 feb87d9b484..0dcdb8d4ea2 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 e367ee739df..319242330a1 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 91457510686..d1253db6305 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 a893525731b..1c83f488aa9 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 643b762284f..1e1fc22fded 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 db89ed59c2f..7fd33fbdbc1 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 5a71dc91850..b0ffde8b157 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 d9807dedd6d..03388e8d696 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 0e8b0db85be..c33e1f3e248 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 44d6e532030..327db0216ac 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 59f9a6ec9a0..0b8510aeed7 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 738900cd3cf..1a1ee2dde23 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 30f496f07f9..3d5cdcc8fe9 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 bf4e8c6aab0..982cc4b34e9 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 a25d9b63ec3..449e0031040 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 b935058bf1a..8837294a866 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 48f81b8ef00..4eff1a7241b 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 cc6b083207d..d664cdc3e8e 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 eeaa22a5239..328ae8308a4 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 3746e177ef4..0d6581b727b 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 a79facc46c0..49492da49fc 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 eeeed9f39fb..80630bfe74a 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 45c6ed58307..244150d99ce 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 332f7facace..8fd121e25ef 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 8b497ec05ea..4618c2059c5 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 25749f3e092..f7cfeca9f79 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 63eba97ad18..d3fbb0f4e1a 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 29aee1137cd..d62dd2ee2df 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 306bcd1b1a2..0cc490d5cf2 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 05ccf5afe96..7dcf54b6f11 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 52ef0c379e5..6c798b1371c 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 bf0b9693dd3..c2f69a88c44 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 0ee0fd917cf..0e44e65e5de 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 58ec01b8fcc..e05854e5088 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 5ad927f031c..c56589fbd09 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 41f0c31f82c..f02b120c779 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 938aca87b3f..8e78674cd88 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 eb0b3f3ff21..bd8010e7ddf 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 e5dd12b60aa..f6c7a13d97f 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 671a6a97b64..f7d44c21e02 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 8e50984759d..ecbcfdfd97a 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 0bebcf40fa6..d707140eaa8 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 5a144fe399e..ae46eb1a60d 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 2e1e66b3a6f..1ef39834648 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 61a1fe7fcd1..681262e7452 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 031766b93a7..708df5ac011 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 475ba9c89a2..f41a4b1ebfd 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 f8ab994a020..e88687e45e7 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 2bd15b6cf35..3a0132a9260 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 6319e0a1a25..5b41f5861a4 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 affede97def..95a3427c687 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 885aa74ac4f..ea5c41bbcba 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 e08c7a31dbb..cab934212cb 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 c03920f6a23..bf1d0dbf200 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 b5d06371a5e..4362745fde9 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 534ea2ea0ce..8796b152d09 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 b5f56c475bc..8f94a9834f9 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 50e89891ed5..1b2d0033fcf 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 694aba85ac2..84538e16927 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 2342b4379fa..4d2ac964681 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 d3fbb362536..ea4170f2163 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 4e589bf606a..ae8f878cd10 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 8a0e172d2e9..cc0c03a04a0 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 109638c3cea..7c7b43a4d8f 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 ff3811bbf2e..6f3a7724c2b 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 4ecd7f78e73..ac969e5947a 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 d135262a177..c8461f70c47 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 ae8ca3babd3..3c6b4caa57a 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 9dfc528d1b9..e368354b9f8 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 43a761bf3f1..3b6d0fa0462 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 4ec1e188ecf..ea8626d082e 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 c5d6e78b33f..f5d68fb60b4 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 ab94ec10f38..fdd3a5d0b1e 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 dadba7fe1b7..9ad1d95e7f4 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 c8048f48465..1bd3097133f 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 39a79b4727c..af72925dc4d 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 61170dd3370..a9b990bad39 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 3003ea6be06..432740e1c9a 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 3248569a481..fd1415fd123 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 414a7e3dca0..752eef09eb3 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 a041d336168..59d0f98df1c 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 42802608196..781ddbd3862 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 341f75abc9e..efbdcff7e70 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 fad19e9c24e..033d78e8ab9 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 f0f843fc3a9..7ad9a1c8e7c 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 191e9b06db0..3682aa73817 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 7e8d3f2efae..359e81eee84 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 dd0a865e2cc..130c61395a2 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 7ca6f3799e2..f4872a1d16e 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 649b8a22417..8b9382c51d2 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 d59f72ecf5f..ce93be5a666 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 2fc223d4362..2c016f92382 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 13ac987c91c..db22a257d87 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 16b48b7d5e1..5a76aee33da 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 7bf2acd2be9..84f4dca14c4 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 b9fc1ccc238..f4b7b8da67b 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 832ef6b2bcd..e99ee102734 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 f2b7d90752e..523a20fc059 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 a6d07295639..6b01b8557a6 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 c7bef707881..83e39b61d9d 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 7d24762c473..b1134e6c96f 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 74b253700d5..ff8c934961b 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 ec810e9a4e1..30da200a8ec 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 a73a2f51dc8..4e60753c618 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 47bfb4b397e..5f9953c0c63 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 5aa9d59f56c..2c1b8e095c7 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 3305fb851fb..66888ea277a 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 461bbcda41c..a0672e99c78 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 e3997c1cbab..a4477c08d91 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 9771f8b028b..cece96b6eaa 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 ed3037bf434..cb7b1ba80ed 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 d66d7a05ec9..0625cbb15e5 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 74be2f6f6da..f8fe0dd9bdf 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 b313ae591ee..aef458b5184 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 1b16004af35..29ed3804473 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 09575d700ff..ba32415c3f9 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 08eba174947..6574233dbd9 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 9f789f29548..ee3e483c543 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 0ff91c894f6..7a27e028331 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 |