summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/ctraces/tests/CMakeLists.txt
blob: 9f2841029003c2427ae8b33eca86cce68154aab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
set(UNIT_TESTS_FILES
  decoding.c
  basic.c
  span.c
  )

set(CTR_TESTS_DATA_PATH "${CMAKE_CURRENT_SOURCE_DIR}/data")
configure_file(
  "${CMAKE_CURRENT_SOURCE_DIR}/ctr_tests_config.h.in"
  "${CMAKE_CURRENT_BINARY_DIR}/ctr_tests_config.h"
  )

# Prepare list of unit tests
foreach(source_file ${UNIT_TESTS_FILES})
  get_filename_component(source_file_we ${source_file} NAME_WE)
  set(source_file_we ctr-test-${source_file_we})

  add_executable(
    ${source_file_we}
    ${source_file}
    )

  target_link_libraries(${source_file_we} ctraces-static)

if(NOT CTR_SYSTEM_WINDOWS)
  target_link_libraries(${source_file_we} pthread)
endif()

  add_test(NAME ${source_file_we}
    COMMAND ${CMAKE_BINARY_DIR}/tests/${source_file_we}
    WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/tests)
  set_tests_properties(${source_file_we} PROPERTIES LABELS "internal")
endforeach()