Skip to content

Commit 61399d1

Browse files
committed
Add tests for library/cpp/yt/containers into listfile (#210)
1 parent 037be92 commit 61399d1

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

library/cpp/yt/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
if (YDB_SDK_TESTS)
22
add_subdirectory(coding/unittests)
3+
add_subdirectory(containers/unittests)
34
endif()
45

56
_ydb_sdk_add_library(yt-assert)
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
add_ydb_test(NAME yt-containers-enum_indexed_array_ut GTEST
2+
SOURCES
3+
enum_indexed_array_ut.cpp
4+
LINK_LIBRARIES
5+
yt-containers
6+
GTest::gtest_main
7+
LABELS
8+
unit
9+
)
10+
11+
add_ydb_test(NAME yt-containers-sharded_set_ut GTEST
12+
SOURCES
13+
sharded_set_ut.cpp
14+
LINK_LIBRARIES
15+
yt-containers
16+
GTest::gtest_main
17+
LABELS
18+
unit
19+
)

0 commit comments

Comments
 (0)