brintos

brintos / llvm-project-archived public Read only

0
0
Text · 611 B · 91e49be Raw
34 lines · plain
1set(ONDISK_CAS_TEST_SOURCES2  BuiltinUnifiedCASDatabasesTest.cpp3  OnDiskGraphDBTest.cpp4  OnDiskDataAllocatorTest.cpp5  OnDiskKeyValueDBTest.cpp6  OnDiskTrieRawHashMapTest.cpp7  ProgramTest.cpp8  UnifiedOnDiskCacheTest.cpp9  )10 11set(LLVM_OPTIONAL_SOURCES12  ${ONDISK_CAS_TEST_SOURCES}13  )14 15if (NOT LLVM_ENABLE_ONDISK_CAS)16  unset(ONDISK_CAS_TEST_SOURCES)17endif()18 19set(LLVM_LINK_COMPONENTS20  Support21  CAS22  TestingSupport23  )24 25add_llvm_unittest(CASTests26  ActionCacheTest.cpp27  CASTestConfig.cpp28  ObjectStoreTest.cpp29 30  ${ONDISK_CAS_TEST_SOURCES}31  )32 33target_link_libraries(CASTests PRIVATE LLVMTestingSupport)34