24 lines · plain
1set(TSAN_RTL_TEST_SOURCES2 tsan_bench.cpp3 tsan_mop.cpp4 tsan_mutex.cpp5 tsan_posix.cpp6 tsan_string.cpp7 tsan_test.cpp8 tsan_thread.cpp9 )10 11if(UNIX)12 list(APPEND TSAN_RTL_TEST_SOURCES13 tsan_test_util_posix.cpp14 )15endif()16 17set(TSAN_RTL_TEST_HEADERS18 tsan_test_util.h19 )20 21add_tsan_unittest(TsanRtlTest22 SOURCES ${TSAN_RTL_TEST_SOURCES}23 HEADERS ${TSAN_RTL_TEST_HEADERS})24