xref: /openbsd-src/gnu/llvm/compiler-rt/lib/xray/tests/unit/CMakeLists.txt (revision 3cab2bb3f667058bece8e38b12449a63a9d73c4b)
1set(TEST_SOURCES
2  allocator_test.cpp
3  buffer_queue_test.cpp
4  function_call_trie_test.cpp
5  profile_collector_test.cpp
6  segmented_array_test.cpp
7  test_helpers.cpp
8  xray_unit_test_main.cpp
9  )
10
11if (NOT COMPILER_RT_STANDALONE_BUILD OR COMPILER_RT_HAS_LLVMTESTINGSUPPORT)
12  list(APPEND TEST_SOURCES
13    fdr_controller_test.cpp
14    fdr_log_writer_test.cpp
15    )
16endif()
17
18add_xray_unittest(XRayTest SOURCES ${TEST_SOURCES})
19