Home | History | Annotate | Download | only in rtl
      1 set(TSAN_RTL_TEST_SOURCES
      2   tsan_bench.cc
      3   tsan_mop.cc
      4   tsan_mutex.cc
      5   tsan_posix.cc
      6   tsan_string.cc
      7   tsan_test.cc
      8   tsan_thread.cc)
      9 
     10 if(UNIX)
     11   list(APPEND TSAN_RTL_TEST_SOURCES tsan_test_util_posix.cc)
     12 endif()
     13 
     14 set(TSAN_RTL_TEST_HEADERS
     15   tsan_test_util.h)
     16 
     17 add_tsan_unittest(TsanRtlTest
     18   SOURCES ${TSAN_RTL_TEST_SOURCES}
     19   HEADERS ${TSAN_RTL_TEST_HEADERS})
     20