Skip to content

Commit d8e884f

Browse files
committed
Add tests for library/cpp/http/io into listfile (#185)
1 parent 5b77a2b commit d8e884f

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

library/cpp/http/io/CMakeLists.txt

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1+
if (YDB_SDK_TESTS)
2+
add_ydb_test(NAME http-io-chunk_ut
3+
SOURCES
4+
chunk_ut.cpp
5+
LINK_LIBRARIES
6+
http-io
7+
cpp-testing-unittest_main
8+
LABELS
9+
unit
10+
)
11+
12+
add_ydb_test(NAME http-io-compression_ut
13+
SOURCES
14+
compression_ut.cpp
15+
LINK_LIBRARIES
16+
http-io
17+
cpp-testing-unittest_main
18+
LABELS
19+
unit
20+
)
21+
22+
add_ydb_test(NAME http-io-headers_ut
23+
SOURCES
24+
headers_ut.cpp
25+
LINK_LIBRARIES
26+
http-io
27+
cpp-testing-unittest_main
28+
LABELS
29+
unit
30+
)
31+
32+
add_ydb_test(NAME http-io-stream_ut
33+
SOURCES
34+
stream_ut.cpp
35+
LINK_LIBRARIES
36+
yutil
37+
http-io
38+
http-server
39+
cpp-testing-unittest_main
40+
LABELS
41+
unit
42+
)
43+
44+
add_ydb_test(NAME http-io-stream_ut_medium
45+
SOURCES
46+
stream_ut_medium.cpp
47+
LINK_LIBRARIES
48+
http-io
49+
cpp-testing-unittest_main
50+
LABELS
51+
unit
52+
)
53+
endif(YDB_SDK_TESTS)
54+
155
_ydb_sdk_add_library(http-io)
256

357
target_link_libraries(http-io

0 commit comments

Comments
 (0)