OSDN Git Service

Move unittests/Support/IteratorTest.cpp to unittests/ADT/
[android-x86/external-llvm.git] / unittests / ADT / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Support
3   )
4
5 set(ADTSources
6   APFloatTest.cpp
7   APIntTest.cpp
8   APSIntTest.cpp
9   ArrayRefTest.cpp
10   BitmaskEnumTest.cpp
11   BitVectorTest.cpp
12   DAGDeltaAlgorithmTest.cpp
13   DeltaAlgorithmTest.cpp
14   DenseMapTest.cpp
15   DenseSetTest.cpp
16   FoldingSet.cpp
17   FunctionRefTest.cpp
18   HashingTest.cpp
19   ilistTest.cpp
20   ImmutableMapTest.cpp
21   ImmutableSetTest.cpp
22   IntEqClassesTest.cpp
23   IntervalMapTest.cpp
24   IntrusiveRefCntPtrTest.cpp
25   IteratorTest.cpp
26   MakeUniqueTest.cpp
27   MapVectorTest.cpp
28   OptionalTest.cpp
29   PackedVectorTest.cpp
30   PointerEmbeddedIntTest.cpp
31   PointerIntPairTest.cpp
32   PointerSumTypeTest.cpp
33   PointerUnionTest.cpp
34   PostOrderIteratorTest.cpp
35   PriorityWorklistTest.cpp
36   RangeAdapterTest.cpp
37   SCCIteratorTest.cpp
38   STLExtrasTest.cpp
39   ScopeExitTest.cpp
40   SequenceTest.cpp
41   SetVectorTest.cpp
42   SmallPtrSetTest.cpp
43   SmallStringTest.cpp
44   SmallVectorTest.cpp
45   SparseBitVectorTest.cpp
46   SparseMultiSetTest.cpp
47   SparseSetTest.cpp
48   StringMapTest.cpp
49   StringRefTest.cpp
50   TinyPtrVectorTest.cpp
51   TripleTest.cpp
52   TwineTest.cpp
53   VariadicFunctionTest.cpp
54  )
55
56 add_llvm_unittest(ADTTests
57   ${ADTSources}
58   )
59
60 add_dependencies(ADTTests intrinsics_gen)