X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=unittests%2FADT%2FCMakeLists.txt;h=cbcb08485563e5bdfd1852fa8627333dc02cb174;hb=00552e3875ee5f382db6c98286a241a7d0efe1b8;hp=183aa6aabf2d0ca7a543371602829b34f55de50d;hpb=8147752976bda4499863c3db9feee760cf0b9015;p=oota-llvm.git diff --git a/unittests/ADT/CMakeLists.txt b/unittests/ADT/CMakeLists.txt index 183aa6aabf2..cbcb0848556 100644 --- a/unittests/ADT/CMakeLists.txt +++ b/unittests/ADT/CMakeLists.txt @@ -5,6 +5,7 @@ set(LLVM_LINK_COMPONENTS set(ADTSources APFloatTest.cpp APIntTest.cpp + APSIntTest.cpp ArrayRefTest.cpp BitVectorTest.cpp DAGDeltaAlgorithmTest.cpp @@ -12,6 +13,7 @@ set(ADTSources DenseMapTest.cpp DenseSetTest.cpp FoldingSet.cpp + FunctionRefTest.cpp HashingTest.cpp ilistTest.cpp ImmutableMapTest.cpp @@ -19,10 +21,13 @@ set(ADTSources IntEqClassesTest.cpp IntervalMapTest.cpp IntrusiveRefCntPtrTest.cpp + MakeUniqueTest.cpp MapVectorTest.cpp OptionalTest.cpp PackedVectorTest.cpp + PointerIntPairTest.cpp PointerUnionTest.cpp + PostOrderIteratorTest.cpp SCCIteratorTest.cpp SmallPtrSetTest.cpp SmallStringTest.cpp @@ -36,18 +41,10 @@ set(ADTSources TripleTest.cpp TwineTest.cpp VariadicFunctionTest.cpp - polymorphic_ptr_test.cpp ) -# They cannot be compiled on MSVC9 due to its bug. -if(MSVC AND MSVC_VERSION LESS 1600) - set(LLVM_OPTIONAL_SOURCES - DenseMapTest.cpp - SmallVectorTest.cpp - ) - list(REMOVE_ITEM ADTSources ${LLVM_OPTIONAL_SOURCES}) -endif() - add_llvm_unittest(ADTTests ${ADTSources} ) + +add_dependencies(ADTTests intrinsics_gen)