File tree Expand file tree Collapse file tree 5 files changed +51
-0
lines changed
small_containers/unittests Expand file tree Collapse file tree 5 files changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ if (YDB_SDK_TESTS)
4
4
add_subdirectory (memory/unittests )
5
5
add_subdirectory (misc/unittests )
6
6
add_subdirectory (small_containers/unittests )
7
+ add_subdirectory (string /unittests )
7
8
endif ()
8
9
9
10
_ydb_sdk_add_library (yt-assert )
@@ -147,6 +148,7 @@ target_sources(yt-string
147
148
string /guid.cpp
148
149
string /string.cpp
149
150
string /format.cpp
151
+ string /format_string.cpp
150
152
)
151
153
_ydb_sdk_install_targets (TARGETS yt-string )
152
154
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ add_ydb_test(NAME yt-containers-enum_indexed_array_ut GTEST
3
3
enum_indexed_array_ut.cpp
4
4
LINK_LIBRARIES
5
5
yt-containers
6
+ yt-string
6
7
GTest::gtest_main
7
8
LABELS
8
9
unit
@@ -13,6 +14,7 @@ add_ydb_test(NAME yt-containers-sharded_set_ut GTEST
13
14
sharded_set_ut.cpp
14
15
LINK_LIBRARIES
15
16
yt-containers
17
+ yt-string
16
18
GTest::gtest_main
17
19
LABELS
18
20
unit
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ add_ydb_test(NAME yt-misc-guid_ut GTEST
13
13
guid_ut.cpp
14
14
LINK_LIBRARIES
15
15
yt-misc
16
+ yt-string
16
17
GTest::gtest_main
17
18
LABELS
18
19
unit
@@ -23,6 +24,7 @@ add_ydb_test(NAME yt-misc-preprocessor_ut GTEST
23
24
preprocessor_ut.cpp
24
25
LINK_LIBRARIES
25
26
yt-misc
27
+ yt-string
26
28
GTest::gtest_main
27
29
LABELS
28
30
unit
@@ -33,6 +35,7 @@ add_ydb_test(NAME yt-misc-strong_typedef_ut GTEST
33
35
strong_typedef_ut.cpp
34
36
LINK_LIBRARIES
35
37
yt-misc
38
+ yt-string
36
39
GTest::gtest_main
37
40
LABELS
38
41
unit
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ add_ydb_test(NAME yt-small_containers-compact_flat_map_ut GTEST
3
3
compact_flat_map_ut.cpp
4
4
LINK_LIBRARIES
5
5
yt-small_containers
6
+ yt-string
6
7
GTest::gtest_main
7
8
LABELS
8
9
unit
@@ -13,6 +14,7 @@ add_ydb_test(NAME yt-small_containers-compact_heap_ut GTEST
13
14
compact_heap_ut.cpp
14
15
LINK_LIBRARIES
15
16
yt-small_containers
17
+ yt-string
16
18
GTest::gtest_main
17
19
LABELS
18
20
unit
@@ -23,6 +25,7 @@ add_ydb_test(NAME yt-small_containers-compact_queue_ut GTEST
23
25
compact_queue_ut.cpp
24
26
LINK_LIBRARIES
25
27
yt-small_containers
28
+ yt-string
26
29
GTest::gtest_main
27
30
LABELS
28
31
unit
@@ -33,6 +36,7 @@ add_ydb_test(NAME yt-small_containers-compact_set_ut GTEST
33
36
compact_set_ut.cpp
34
37
LINK_LIBRARIES
35
38
yt-small_containers
39
+ yt-string
36
40
GTest::gtest_main
37
41
LABELS
38
42
unit
@@ -43,6 +47,7 @@ add_ydb_test(NAME yt-small_containers-compact_vector_ut GTEST
43
47
compact_vector_ut.cpp
44
48
LINK_LIBRARIES
45
49
yt-small_containers
50
+ yt-string
46
51
GTest::gtest_main
47
52
GTest::gmock
48
53
LABELS
Original file line number Diff line number Diff line change
1
+ add_ydb_test (NAME yt-string-enum_ut GTEST
2
+ SOURCES
3
+ enum_ut.cpp
4
+ LINK_LIBRARIES
5
+ yt-string
6
+ GTest::gtest_main
7
+ LABELS
8
+ unit
9
+ )
10
+
11
+ add_ydb_test (NAME yt-string-format_ut GTEST
12
+ SOURCES
13
+ format_ut.cpp
14
+ LINK_LIBRARIES
15
+ yt-string
16
+ GTest::gtest_main
17
+ LABELS
18
+ unit
19
+ )
20
+
21
+ add_ydb_test (NAME yt-string-guid_ut GTEST
22
+ SOURCES
23
+ guid_ut.cpp
24
+ LINK_LIBRARIES
25
+ yt-string
26
+ GTest::gtest_main
27
+ LABELS
28
+ unit
29
+ )
30
+
31
+ add_ydb_test (NAME yt-string-string_ut GTEST
32
+ SOURCES
33
+ string_ut.cpp
34
+ LINK_LIBRARIES
35
+ yt-string
36
+ GTest::gtest_main
37
+ LABELS
38
+ unit
39
+ )
You can’t perform that action at this time.
0 commit comments