We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b50f64 commit e382913Copy full SHA for e382913
tests/internal/CMakeLists.txt
@@ -59,6 +59,13 @@ set(UNIT_TESTS_FILES
59
storage_dlq.c
60
)
61
62
+if(FLB_OUT_AZURE_BLOB)
63
+ set(UNIT_TESTS_FILES
64
+ ${UNIT_TESTS_FILES}
65
+ azure_blob_path.c
66
+ )
67
+endif()
68
+
69
# TLS helpers
70
if(FLB_TLS)
71
set(UNIT_TESTS_FILES
@@ -217,6 +224,10 @@ function(prepare_unit_tests TEST_PREFIX SOURCEFILES)
217
224
target_link_libraries(${source_file_we} flb-aws)
218
225
endif()
219
226
227
+ if(FLB_OUT_AZURE_BLOB AND "${source_file_we}" STREQUAL "flb-it-azure_blob_path")
228
+ target_link_libraries(${source_file_we} flb-plugin-out_azure_blob)
229
+ endif()
230
220
231
if(FLB_STREAM_PROCESSOR)
221
232
target_link_libraries(${source_file_we} flb-sp)
222
233
0 commit comments