diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /util/generic | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'util/generic')
-rw-r--r-- | util/generic/ut/ya.make | 73 | ||||
-rw-r--r-- | util/generic/ut_cython/ya.make | 25 | ||||
-rw-r--r-- | util/generic/ya.make | 11 |
3 files changed, 0 insertions, 109 deletions
diff --git a/util/generic/ut/ya.make b/util/generic/ut/ya.make deleted file mode 100644 index 98dda8111e4..00000000000 --- a/util/generic/ut/ya.make +++ /dev/null @@ -1,73 +0,0 @@ -UNITTEST_FOR(util) - -SUBSCRIBER(g:util-subscribers) - -FORK_TESTS() - -SRCS( - generic/adaptor_ut.cpp - generic/algorithm_ut.cpp - generic/array_ref_ut.cpp - generic/array_size_ut.cpp - generic/bitmap_ut.cpp - generic/bitops_ut.cpp - generic/buffer_ut.cpp - generic/cast_ut.cpp - generic/deque_ut.cpp - generic/explicit_type_ut.cpp - generic/flags_ut.cpp - generic/function_ref_ut.cpp - generic/function_ut.cpp - generic/guid_ut.cpp - generic/hash_primes_ut.cpp - generic/hash_ut.cpp - generic/intrlist_ut.cpp - generic/is_in_ut.cpp - generic/iterator_range_ut.cpp - generic/iterator_ut.cpp - generic/lazy_value_ut.cpp - generic/list_ut.cpp - generic/map_ut.cpp - generic/mapfindptr_ut.cpp - generic/maybe_ut.cpp - generic/mem_copy_ut.cpp - generic/objects_counter_ut.cpp - generic/overloaded_ut.cpp - generic/ptr_ut.cpp - generic/queue_ut.cpp - generic/scope_ut.cpp - generic/serialized_enum_ut.cpp - generic/set_ut.cpp - generic/singleton_ut.cpp - generic/size_literals_ut.cpp - generic/stack_ut.cpp - generic/store_policy_ut.cpp - generic/strbuf_ut.cpp - generic/string_ut.cpp - generic/typelist_ut.cpp - generic/typetraits_ut.cpp - generic/utility_ut.cpp - generic/va_args_ut.cpp - generic/vector_ut.cpp - generic/xrange_ut.cpp - generic/yexception_ut.c - generic/yexception_ut.cpp - generic/ylimits_ut.cpp - generic/ymath_ut.cpp -) - -INCLUDE(${ARCADIA_ROOT}/util/tests/ya_util_tests.inc) - -IF (NOT OS_IOS AND NOT ARCH_PPC64LE) - # Abseil fails to build (with linkage error) on ios and with compilation error on PowerPC - # (somewhere in unscaledcycleclock.cc). - PEERDIR( - library/cpp/containers/absl_flat_hash - ) - - SRCS( - generic/string_transparent_hash_ut.cpp - ) -ENDIF() - -END() diff --git a/util/generic/ut_cython/ya.make b/util/generic/ut_cython/ya.make deleted file mode 100644 index ea923ff4133..00000000000 --- a/util/generic/ut_cython/ya.make +++ /dev/null @@ -1,25 +0,0 @@ -PY23_TEST() - -SUBSCRIBER(g:util-subscribers) - -SRCDIR(util/generic) - -PY_SRCS( - NAMESPACE util.generic - array_ref_ut.pyx - deque_ut.pyx - hash_set_ut.pyx - hash_ut.pyx - list_ut.pyx - map_ut.pyx - maybe_ut.pyx - ptr_ut.pyx - string_ut.pyx - vector_ut.pyx -) - -TEST_SRCS( - test_generic.py -) - -END() diff --git a/util/generic/ya.make b/util/generic/ya.make deleted file mode 100644 index c995d26bde1..00000000000 --- a/util/generic/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -SUBSCRIBER(g:util-subscribers) - -RECURSE_FOR_TESTS( - ut -) - -IF (NOT OS_IOS AND NOT OS_ANDROID AND NOT USE_SYSTEM_PYTHON) - RECURSE( - ut_cython - ) -ENDIF() |