File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ if (YDB_SDK_TESTS)
2
2
add_subdirectory (coding/unittests )
3
3
add_subdirectory (containers/unittests )
4
4
add_subdirectory (memory/unittests )
5
+ add_subdirectory (misc/unittests )
5
6
endif ()
6
7
7
8
_ydb_sdk_add_library (yt-assert )
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments