Fix test failures introduced by PR #113697 (#116941)
[llvm-project.git] / llvm / unittests / ADT / CMakeLists.txt
blobb0077d5b54a3ee5ad6819c5e01e801678765da90
1 set(LLVM_LINK_COMPONENTS
2   Support
3   )
5 add_llvm_unittest(ADTTests
6   AnyTest.cpp
7   APFixedPointTest.cpp
8   APFloatTest.cpp
9   APIntTest.cpp
10   APSIntTest.cpp
11   ArrayRefTest.cpp
12   BitFieldsTest.cpp
13   BitmaskEnumTest.cpp
14   BitTest.cpp
15   BitVectorTest.cpp
16   BreadthFirstIteratorTest.cpp
17   BumpPtrListTest.cpp
18   CoalescingBitVectorTest.cpp
19   CombinationGeneratorTest.cpp
20   ConcurrentHashtableTest.cpp
21   CountCopyAndMove.cpp
22   DAGDeltaAlgorithmTest.cpp
23   DeltaAlgorithmTest.cpp
24   DenseMapTest.cpp
25   DenseSetTest.cpp
26   DepthFirstIteratorTest.cpp
27   DirectedGraphTest.cpp
28   DynamicAPIntTest.cpp
29   EditDistanceTest.cpp
30   EnumeratedArrayTest.cpp
31   EquivalenceClassesTest.cpp
32   FallibleIteratorTest.cpp
33   FloatingPointMode.cpp
34   FoldingSet.cpp
35   FunctionExtrasTest.cpp
36   FunctionRefTest.cpp
37   HashingTest.cpp
38   IListBaseTest.cpp
39   IListIteratorTest.cpp
40   IListIteratorBitsTest.cpp
41   IListNodeBaseTest.cpp
42   IListNodeTest.cpp
43   IListSentinelTest.cpp
44   IListTest.cpp
45   ImmutableListTest.cpp
46   ImmutableMapTest.cpp
47   ImmutableSetTest.cpp
48   IntEqClassesTest.cpp
49   Interleave.cpp
50   IntervalMapTest.cpp
51   IntervalTreeTest.cpp
52   IntrusiveRefCntPtrTest.cpp
53   IteratorTest.cpp
54   LazyAtomicPointerTest.cpp
55   MappedIteratorTest.cpp
56   MapVectorTest.cpp
57   PackedVectorTest.cpp
58   PagedVectorTest.cpp
59   PointerEmbeddedIntTest.cpp
60   PointerIntPairTest.cpp
61   PointerSumTypeTest.cpp
62   PointerUnionTest.cpp
63   PostOrderIteratorTest.cpp
64   PriorityWorklistTest.cpp
65   RangeAdapterTest.cpp
66   RewriteBufferTest.cpp
67   SCCIteratorTest.cpp
68   STLExtrasTest.cpp
69   STLForwardCompatTest.cpp
70   ScopeExitTest.cpp
71   SequenceTest.cpp
72   SetOperationsTest.cpp
73   SetVectorTest.cpp
74   SimpleIListTest.cpp
75   SmallPtrSetTest.cpp
76   SmallSetTest.cpp
77   SmallStringTest.cpp
78   SmallVectorTest.cpp
79   SparseBitVectorTest.cpp
80   SparseMultiSetTest.cpp
81   SparseSetTest.cpp
82   StatisticTest.cpp
83   StringExtrasTest.cpp
84   StringMapTest.cpp
85   StringRefTest.cpp
86   StringSetTest.cpp
87   StringSwitchTest.cpp
88   TinyPtrVectorTest.cpp
89   TrieRawHashMapTest.cpp
90   TwineTest.cpp
91   TypeSwitchTest.cpp
92   TypeTraitsTest.cpp
93   )
95 target_link_libraries(ADTTests PRIVATE LLVMTestingSupport)
97 add_dependencies(ADTTests intrinsics_gen)