diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-04-10 14:42:59 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-04-10 14:42:59 +0300 |
commit | e667f88560ba27a376f893d209649db9afe1c076 (patch) | |
tree | 6fcce258671a055a86817d2a573d5fda7c21636e /library/cpp/actors/testlib | |
parent | f8c5aa26b39bc589cff86b4ecd95a18a49421c6d (diff) | |
download | ydb-e667f88560ba27a376f893d209649db9afe1c076.tar.gz |
Intermediate changes
Diffstat (limited to 'library/cpp/actors/testlib')
4 files changed, 13 insertions, 5 deletions
diff --git a/library/cpp/actors/testlib/ut/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/testlib/ut/CMakeLists.darwin-x86_64.txt index f19083b8be6..03d106c63f9 100644 --- a/library/cpp/actors/testlib/ut/CMakeLists.darwin-x86_64.txt +++ b/library/cpp/actors/testlib/ut/CMakeLists.darwin-x86_64.txt @@ -14,7 +14,6 @@ target_include_directories(library-cpp-actors-testlib-ut PRIVATE target_link_libraries(library-cpp-actors-testlib-ut PUBLIC contrib-libs-cxxsupp yutil - cpp-malloc-system library-cpp-cpuid_check cpp-testing-unittest_main cpp-actors-testlib @@ -63,4 +62,7 @@ set_yunittest_property( PROCESSORS 1 ) +target_allocator(library-cpp-actors-testlib-ut + system_allocator +) vcs_info(library-cpp-actors-testlib-ut) diff --git a/library/cpp/actors/testlib/ut/CMakeLists.linux-aarch64.txt b/library/cpp/actors/testlib/ut/CMakeLists.linux-aarch64.txt index f41e1a37639..598b6e53dea 100644 --- a/library/cpp/actors/testlib/ut/CMakeLists.linux-aarch64.txt +++ b/library/cpp/actors/testlib/ut/CMakeLists.linux-aarch64.txt @@ -15,7 +15,6 @@ target_link_libraries(library-cpp-actors-testlib-ut PUBLIC contrib-libs-linux-headers contrib-libs-cxxsupp yutil - cpp-malloc-jemalloc cpp-testing-unittest_main cpp-actors-testlib cpp-actors-core @@ -66,4 +65,7 @@ set_yunittest_property( PROCESSORS 1 ) +target_allocator(library-cpp-actors-testlib-ut + cpp-malloc-jemalloc +) vcs_info(library-cpp-actors-testlib-ut) diff --git a/library/cpp/actors/testlib/ut/CMakeLists.linux-x86_64.txt b/library/cpp/actors/testlib/ut/CMakeLists.linux-x86_64.txt index 83a9b7371f1..42713842dab 100644 --- a/library/cpp/actors/testlib/ut/CMakeLists.linux-x86_64.txt +++ b/library/cpp/actors/testlib/ut/CMakeLists.linux-x86_64.txt @@ -15,8 +15,6 @@ target_link_libraries(library-cpp-actors-testlib-ut PUBLIC contrib-libs-linux-headers contrib-libs-cxxsupp yutil - cpp-malloc-tcmalloc - libs-tcmalloc-no_percpu_cache library-cpp-cpuid_check cpp-testing-unittest_main cpp-actors-testlib @@ -68,4 +66,8 @@ set_yunittest_property( PROCESSORS 1 ) +target_allocator(library-cpp-actors-testlib-ut + cpp-malloc-tcmalloc + libs-tcmalloc-no_percpu_cache +) vcs_info(library-cpp-actors-testlib-ut) diff --git a/library/cpp/actors/testlib/ut/CMakeLists.windows-x86_64.txt b/library/cpp/actors/testlib/ut/CMakeLists.windows-x86_64.txt index c04f088b8ac..077ccae7fb6 100644 --- a/library/cpp/actors/testlib/ut/CMakeLists.windows-x86_64.txt +++ b/library/cpp/actors/testlib/ut/CMakeLists.windows-x86_64.txt @@ -14,7 +14,6 @@ target_include_directories(library-cpp-actors-testlib-ut PRIVATE target_link_libraries(library-cpp-actors-testlib-ut PUBLIC contrib-libs-cxxsupp yutil - cpp-malloc-system library-cpp-cpuid_check cpp-testing-unittest_main cpp-actors-testlib @@ -56,4 +55,7 @@ set_yunittest_property( PROCESSORS 1 ) +target_allocator(library-cpp-actors-testlib-ut + system_allocator +) vcs_info(library-cpp-actors-testlib-ut) |