File tree Expand file tree Collapse file tree 1 file changed +53
-1
lines changed
library/cpp/threading/future Expand file tree Collapse file tree 1 file changed +53
-1
lines changed Original file line number Diff line number Diff line change
1
+ if (YDB_SDK_TESTS )
2
+ add_ydb_test (NAME threading-future-async_ut
3
+ SOURCES
4
+ async_ut.cpp
5
+ LINK_LIBRARIES
6
+ threading-future
7
+ cpp-testing-unittest_main
8
+ LABELS
9
+ unit
10
+ )
11
+
12
+ add_ydb_test (NAME threading-future-legacy_future_ut
13
+ SOURCES
14
+ legacy_future_ut.cpp
15
+ LINK_LIBRARIES
16
+ threading-future
17
+ cpp-testing-unittest_main
18
+ LABELS
19
+ unit
20
+ )
21
+
22
+ add_ydb_test (NAME threading-future-async_semaphore_ut
23
+ SOURCES
24
+ async_semaphore_ut.cpp
25
+ LINK_LIBRARIES
26
+ threading-future
27
+ cpp-testing-unittest_main
28
+ LABELS
29
+ unit
30
+ )
31
+
32
+ add_ydb_test (NAME threading-future-future_ut
33
+ SOURCES
34
+ future_ut.cpp
35
+ LINK_LIBRARIES
36
+ threading-future
37
+ cpp-testing-unittest_main
38
+ LABELS
39
+ unit
40
+ )
41
+
42
+ add_ydb_test (NAME threading-future-future_mt_ut
43
+ SOURCES
44
+ future_mt_ut.cpp
45
+ LINK_LIBRARIES
46
+ threading-future
47
+ cpp-testing-unittest_main
48
+ LABELS
49
+ unit
50
+ )
51
+ endif (YDB_SDK_TESTS )
52
+
1
53
_ydb_sdk_add_library (threading-future )
2
54
3
55
target_link_libraries (threading-future PUBLIC
4
56
yutil
5
57
)
6
58
7
- target_sources (threading-future
59
+ target_sources (threading-future
8
60
PRIVATE
9
61
async_semaphore.cpp
10
62
async.cpp
You can’t perform that action at this time.
0 commit comments