1set(TSAN_RTL_TEST_SOURCES 2 tsan_bench.cpp 3 tsan_mop.cpp 4 tsan_mutex.cpp 5 tsan_posix.cpp 6 tsan_string.cpp 7 tsan_test.cpp 8 tsan_thread.cpp 9 ) 10 11if(UNIX) 12 list(APPEND TSAN_RTL_TEST_SOURCES 13 tsan_test_util_posix.cpp 14 ) 15endif() 16 17set(TSAN_RTL_TEST_HEADERS 18 tsan_test_util.h 19 ) 20 21add_tsan_unittest(TsanRtlTest 22 SOURCES ${TSAN_RTL_TEST_SOURCES} 23 HEADERS ${TSAN_RTL_TEST_HEADERS}) 24