103 lines · plain
1set(LLVM_LINK_COMPONENTS2 Support3 )4 5add_llvm_unittest(ADTTests6 AnyTest.cpp7 APFixedPointTest.cpp8 APFloatTest.cpp9 APIntTest.cpp10 APSIntTest.cpp11 ArrayRefTest.cpp12 BitFieldsTest.cpp13 BitmaskEnumTest.cpp14 BitTest.cpp15 BitsetTest.cpp16 BitVectorTest.cpp17 BreadthFirstIteratorTest.cpp18 BumpPtrListTest.cpp19 CoalescingBitVectorTest.cpp20 CombinationGeneratorTest.cpp21 ConcurrentHashtableTest.cpp22 CountCopyAndMove.cpp23 DAGDeltaAlgorithmTest.cpp24 DeltaAlgorithmTest.cpp25 DenseMapTest.cpp26 DenseSetTest.cpp27 DepthFirstIteratorTest.cpp28 DirectedGraphTest.cpp29 DynamicAPIntTest.cpp30 EditDistanceTest.cpp31 EnumeratedArrayTest.cpp32 EquivalenceClassesTest.cpp33 FallibleIteratorTest.cpp34 FloatingPointMode.cpp35 FoldingSet.cpp36 FunctionExtrasTest.cpp37 FunctionRefTest.cpp38 HashingTest.cpp39 IListBaseTest.cpp40 IListIteratorTest.cpp41 IListIteratorBitsTest.cpp42 IListNodeBaseTest.cpp43 IListNodeTest.cpp44 IListSentinelTest.cpp45 IListTest.cpp46 ImmutableListTest.cpp47 ImmutableMapTest.cpp48 ImmutableSetTest.cpp49 IntEqClassesTest.cpp50 Interleave.cpp51 IntervalMapTest.cpp52 IntervalTreeTest.cpp53 IntrusiveRefCntPtrTest.cpp54 IteratorTest.cpp55 LazyAtomicPointerTest.cpp56 MappedIteratorTest.cpp57 MapVectorTest.cpp58 PackedVectorTest.cpp59 PagedVectorTest.cpp60 PointerEmbeddedIntTest.cpp61 PointerIntPairTest.cpp62 PointerSumTypeTest.cpp63 PointerUnionTest.cpp64 PostOrderIteratorTest.cpp65 PriorityWorklistTest.cpp66 RadixTreeTest.cpp67 RangeAdapterTest.cpp68 RewriteBufferTest.cpp69 SCCIteratorTest.cpp70 STLExtrasTest.cpp71 STLForwardCompatTest.cpp72 ScopedHashTableTest.cpp73 ScopeExitTest.cpp74 SequenceTest.cpp75 SetOperationsTest.cpp76 SetVectorTest.cpp77 SimpleIListTest.cpp78 SmallPtrSetTest.cpp79 SmallSetTest.cpp80 SmallStringTest.cpp81 SmallVectorExtrasTest.cpp82 SmallVectorTest.cpp83 SparseBitVectorTest.cpp84 SparseMultiSetTest.cpp85 SparseSetTest.cpp86 StatisticTest.cpp87 StringExtrasTest.cpp88 StringMapTest.cpp89 StringRefTest.cpp90 StringSetTest.cpp91 StringSwitchTest.cpp92 StringTableTest.cpp93 TinyPtrVectorTest.cpp94 TrieRawHashMapTest.cpp95 TwineTest.cpp96 TypeSwitchTest.cpp97 TypeTraitsTest.cpp98 )99 100target_link_libraries(ADTTests PRIVATE LLVMTestingSupport)101 102add_dependencies(ADTTests intrinsics_gen)103