Skip to content

Commit 945bf22

Browse files
committed
Add tests for library/cpp/yt/misc into listfile (#210)
1 parent 940f8df commit 945bf22

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

library/cpp/yt/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ if (YDB_SDK_TESTS)
22
add_subdirectory(coding/unittests)
33
add_subdirectory(containers/unittests)
44
add_subdirectory(memory/unittests)
5+
add_subdirectory(misc/unittests)
56
endif()
67

78
_ydb_sdk_add_library(yt-assert)
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
add_ydb_test(NAME yt-misc-enum_ut GTEST
2+
SOURCES
3+
enum_ut.cpp
4+
LINK_LIBRARIES
5+
yt-misc
6+
GTest::gtest_main
7+
LABELS
8+
unit
9+
)
10+
11+
add_ydb_test(NAME yt-misc-guid_ut GTEST
12+
SOURCES
13+
guid_ut.cpp
14+
LINK_LIBRARIES
15+
yt-misc
16+
GTest::gtest_main
17+
LABELS
18+
unit
19+
)
20+
21+
add_ydb_test(NAME yt-misc-preprocessor_ut GTEST
22+
SOURCES
23+
preprocessor_ut.cpp
24+
LINK_LIBRARIES
25+
yt-misc
26+
GTest::gtest_main
27+
LABELS
28+
unit
29+
)
30+
31+
add_ydb_test(NAME yt-misc-strong_typedef_ut GTEST
32+
SOURCES
33+
strong_typedef_ut.cpp
34+
LINK_LIBRARIES
35+
yt-misc
36+
GTest::gtest_main
37+
LABELS
38+
unit
39+
)

0 commit comments

Comments
 (0)