summaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/helpers
diff options
context:
space:
mode:
authorsvidyuk <[email protected]>2023-08-30 12:12:06 +0300
committersvidyuk <[email protected]>2023-08-30 12:42:20 +0300
commitcb3da9494c53283f0230ad37e4e8d0ea61b7d8fc (patch)
tree98d10bf793b8e006a638ce08ed73a53b980b3828 /library/cpp/actors/helpers
parentd7212c5b8f972c2ad657311361a3bd1b136f2c5f (diff)
All .ll files support in LLVM_BC
Diffstat (limited to 'library/cpp/actors/helpers')
-rw-r--r--library/cpp/actors/helpers/CMakeLists.darwin-x86_64.txt1
-rw-r--r--library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt1
-rw-r--r--library/cpp/actors/helpers/CMakeLists.linux-x86_64.txt1
-rw-r--r--library/cpp/actors/helpers/CMakeLists.windows-x86_64.txt1
-rw-r--r--library/cpp/actors/helpers/ut/CMakeLists.darwin-x86_64.txt77
-rw-r--r--library/cpp/actors/helpers/ut/CMakeLists.linux-aarch64.txt80
-rw-r--r--library/cpp/actors/helpers/ut/CMakeLists.linux-x86_64.txt82
-rw-r--r--library/cpp/actors/helpers/ut/CMakeLists.txt17
-rw-r--r--library/cpp/actors/helpers/ut/CMakeLists.windows-x86_64.txt70
9 files changed, 0 insertions, 330 deletions
diff --git a/library/cpp/actors/helpers/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/helpers/CMakeLists.darwin-x86_64.txt
index 7367c0b9252..16ecfc7b98c 100644
--- a/library/cpp/actors/helpers/CMakeLists.darwin-x86_64.txt
+++ b/library/cpp/actors/helpers/CMakeLists.darwin-x86_64.txt
@@ -6,7 +6,6 @@
# original buildsystem will not be accepted.
-add_subdirectory(ut)
add_library(cpp-actors-helpers)
target_link_libraries(cpp-actors-helpers PUBLIC
diff --git a/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt b/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt
index da8ce6e8e60..b00db82fdec 100644
--- a/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt
+++ b/library/cpp/actors/helpers/CMakeLists.linux-aarch64.txt
@@ -6,7 +6,6 @@
# original buildsystem will not be accepted.
-add_subdirectory(ut)
add_library(cpp-actors-helpers)
target_link_libraries(cpp-actors-helpers PUBLIC
diff --git a/library/cpp/actors/helpers/CMakeLists.linux-x86_64.txt b/library/cpp/actors/helpers/CMakeLists.linux-x86_64.txt
index da8ce6e8e60..b00db82fdec 100644
--- a/library/cpp/actors/helpers/CMakeLists.linux-x86_64.txt
+++ b/library/cpp/actors/helpers/CMakeLists.linux-x86_64.txt
@@ -6,7 +6,6 @@
# original buildsystem will not be accepted.
-add_subdirectory(ut)
add_library(cpp-actors-helpers)
target_link_libraries(cpp-actors-helpers PUBLIC
diff --git a/library/cpp/actors/helpers/CMakeLists.windows-x86_64.txt b/library/cpp/actors/helpers/CMakeLists.windows-x86_64.txt
index 7367c0b9252..16ecfc7b98c 100644
--- a/library/cpp/actors/helpers/CMakeLists.windows-x86_64.txt
+++ b/library/cpp/actors/helpers/CMakeLists.windows-x86_64.txt
@@ -6,7 +6,6 @@
# original buildsystem will not be accepted.
-add_subdirectory(ut)
add_library(cpp-actors-helpers)
target_link_libraries(cpp-actors-helpers PUBLIC
diff --git a/library/cpp/actors/helpers/ut/CMakeLists.darwin-x86_64.txt b/library/cpp/actors/helpers/ut/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 126b29e5748..00000000000
--- a/library/cpp/actors/helpers/ut/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,77 +0,0 @@
-
-# This file was generated 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_executable(library-cpp-actors-helpers-ut)
-target_include_directories(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers
-)
-target_link_libraries(library-cpp-actors-helpers-ut PUBLIC
- contrib-libs-cxxsupp
- yutil
- library-cpp-cpuid_check
- cpp-testing-unittest_main
- cpp-actors-helpers
- cpp-actors-interconnect
- cpp-actors-testlib
- cpp-actors-core
-)
-target_link_options(library-cpp-actors-helpers-ut PRIVATE
- -Wl,-platform_version,macos,11.0,11.0
- -fPIC
- -fPIC
- -framework
- CoreFoundation
-)
-target_sources(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers/selfping_actor_ut.cpp
-)
-set_property(
- TARGET
- library-cpp-actors-helpers-ut
- PROPERTY
- SPLIT_FACTOR
- 10
-)
-add_yunittest(
- NAME
- library-cpp-actors-helpers-ut
- TEST_TARGET
- library-cpp-actors-helpers-ut
- TEST_ARG
- --print-before-suite
- --print-before-test
- --fork-tests
- --print-times
- --show-fails
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- LABELS
- MEDIUM
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- PROCESSORS
- 1
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- TIMEOUT
- 600
-)
-target_allocator(library-cpp-actors-helpers-ut
- system_allocator
-)
-vcs_info(library-cpp-actors-helpers-ut)
diff --git a/library/cpp/actors/helpers/ut/CMakeLists.linux-aarch64.txt b/library/cpp/actors/helpers/ut/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 24da0dacd6f..00000000000
--- a/library/cpp/actors/helpers/ut/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,80 +0,0 @@
-
-# This file was generated 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_executable(library-cpp-actors-helpers-ut)
-target_include_directories(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers
-)
-target_link_libraries(library-cpp-actors-helpers-ut PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- cpp-testing-unittest_main
- cpp-actors-helpers
- cpp-actors-interconnect
- cpp-actors-testlib
- cpp-actors-core
-)
-target_link_options(library-cpp-actors-helpers-ut PRIVATE
- -ldl
- -lrt
- -Wl,--no-as-needed
- -fPIC
- -fPIC
- -lpthread
- -lrt
- -ldl
-)
-target_sources(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers/selfping_actor_ut.cpp
-)
-set_property(
- TARGET
- library-cpp-actors-helpers-ut
- PROPERTY
- SPLIT_FACTOR
- 10
-)
-add_yunittest(
- NAME
- library-cpp-actors-helpers-ut
- TEST_TARGET
- library-cpp-actors-helpers-ut
- TEST_ARG
- --print-before-suite
- --print-before-test
- --fork-tests
- --print-times
- --show-fails
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- LABELS
- MEDIUM
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- PROCESSORS
- 1
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- TIMEOUT
- 600
-)
-target_allocator(library-cpp-actors-helpers-ut
- cpp-malloc-jemalloc
-)
-vcs_info(library-cpp-actors-helpers-ut)
diff --git a/library/cpp/actors/helpers/ut/CMakeLists.linux-x86_64.txt b/library/cpp/actors/helpers/ut/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index db118dc91ea..00000000000
--- a/library/cpp/actors/helpers/ut/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,82 +0,0 @@
-
-# This file was generated 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_executable(library-cpp-actors-helpers-ut)
-target_include_directories(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers
-)
-target_link_libraries(library-cpp-actors-helpers-ut PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- library-cpp-cpuid_check
- cpp-testing-unittest_main
- cpp-actors-helpers
- cpp-actors-interconnect
- cpp-actors-testlib
- cpp-actors-core
-)
-target_link_options(library-cpp-actors-helpers-ut PRIVATE
- -ldl
- -lrt
- -Wl,--no-as-needed
- -fPIC
- -fPIC
- -lpthread
- -lrt
- -ldl
-)
-target_sources(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers/selfping_actor_ut.cpp
-)
-set_property(
- TARGET
- library-cpp-actors-helpers-ut
- PROPERTY
- SPLIT_FACTOR
- 10
-)
-add_yunittest(
- NAME
- library-cpp-actors-helpers-ut
- TEST_TARGET
- library-cpp-actors-helpers-ut
- TEST_ARG
- --print-before-suite
- --print-before-test
- --fork-tests
- --print-times
- --show-fails
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- LABELS
- MEDIUM
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- PROCESSORS
- 1
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- TIMEOUT
- 600
-)
-target_allocator(library-cpp-actors-helpers-ut
- cpp-malloc-tcmalloc
- libs-tcmalloc-no_percpu_cache
-)
-vcs_info(library-cpp-actors-helpers-ut)
diff --git a/library/cpp/actors/helpers/ut/CMakeLists.txt b/library/cpp/actors/helpers/ut/CMakeLists.txt
deleted file mode 100644
index f8b31df0c11..00000000000
--- a/library/cpp/actors/helpers/ut/CMakeLists.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-
-# This file was generated 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 (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-endif()
diff --git a/library/cpp/actors/helpers/ut/CMakeLists.windows-x86_64.txt b/library/cpp/actors/helpers/ut/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 7e68870a0ea..00000000000
--- a/library/cpp/actors/helpers/ut/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,70 +0,0 @@
-
-# This file was generated 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_executable(library-cpp-actors-helpers-ut)
-target_include_directories(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers
-)
-target_link_libraries(library-cpp-actors-helpers-ut PUBLIC
- contrib-libs-cxxsupp
- yutil
- library-cpp-cpuid_check
- cpp-testing-unittest_main
- cpp-actors-helpers
- cpp-actors-interconnect
- cpp-actors-testlib
- cpp-actors-core
-)
-target_sources(library-cpp-actors-helpers-ut PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/actors/helpers/selfping_actor_ut.cpp
-)
-set_property(
- TARGET
- library-cpp-actors-helpers-ut
- PROPERTY
- SPLIT_FACTOR
- 10
-)
-add_yunittest(
- NAME
- library-cpp-actors-helpers-ut
- TEST_TARGET
- library-cpp-actors-helpers-ut
- TEST_ARG
- --print-before-suite
- --print-before-test
- --fork-tests
- --print-times
- --show-fails
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- LABELS
- MEDIUM
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- PROCESSORS
- 1
-)
-set_yunittest_property(
- TEST
- library-cpp-actors-helpers-ut
- PROPERTY
- TIMEOUT
- 600
-)
-target_allocator(library-cpp-actors-helpers-ut
- system_allocator
-)
-vcs_info(library-cpp-actors-helpers-ut)