unittests: Add SystemTests.
[oota-llvm.git] / unittests / CMakeLists.txt
1 function(add_llvm_unittest test_name)
2   if (CMAKE_BUILD_TYPE)
3     set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
4       ${LLVM_BINARY_DIR}/unittests/${test_name}/${CMAKE_BUILD_TYPE})
5   else()
6     set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
7       ${LLVM_BINARY_DIR}/unittests/${test_name})
8   endif()
9   if( NOT LLVM_BUILD_TESTS )
10     set(EXCLUDE_FROM_ALL ON)
11   endif()
12   add_llvm_executable(${test_name}Tests ${ARGN})
13   add_dependencies(UnitTests ${test_name}Tests)
14 endfunction()
15
16 add_custom_target(UnitTests)
17
18 include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
19 add_definitions(-DGTEST_HAS_RTTI=0)
20 if (NOT LLVM_ENABLE_THREADS)
21   add_definitions(-DGTEST_HAS_PTHREAD=0)
22 endif()
23
24 set(LLVM_LINK_COMPONENTS
25   jit
26   interpreter
27   nativecodegen
28   BitWriter
29   BitReader
30   AsmParser
31   Core
32   System
33   Support
34   )
35
36 set(LLVM_USED_LIBS
37   gtest
38   gtest_main
39   LLVMSupport # gtest needs it for raw_ostream.
40   )
41
42 add_llvm_unittest(ADT
43   ADT/APFloatTest.cpp
44   ADT/APIntTest.cpp
45   ADT/BitVectorTest.cpp
46   ADT/DAGDeltaAlgorithmTest.cpp
47   ADT/DeltaAlgorithmTest.cpp
48   ADT/DenseMapTest.cpp
49   ADT/DenseSetTest.cpp
50   ADT/FoldingSet.cpp
51   ADT/ilistTest.cpp
52   ADT/ImmutableSetTest.cpp
53   ADT/IntervalMapTest.cpp
54   ADT/SmallBitVectorTest.cpp
55   ADT/SmallStringTest.cpp
56   ADT/SmallVectorTest.cpp
57   ADT/SparseBitVectorTest.cpp
58   ADT/StringMapTest.cpp
59   ADT/StringRefTest.cpp
60   ADT/TripleTest.cpp
61   ADT/TwineTest.cpp
62  )
63
64 add_llvm_unittest(Analysis
65   Analysis/ScalarEvolutionTest.cpp
66   )
67
68 add_llvm_unittest(ExecutionEngine
69   ExecutionEngine/ExecutionEngineTest.cpp
70   )
71
72 set(JITTestsSources
73   ExecutionEngine/JIT/JITEventListenerTest.cpp
74   ExecutionEngine/JIT/JITMemoryManagerTest.cpp
75   ExecutionEngine/JIT/JITTest.cpp
76   ExecutionEngine/JIT/MultiJITTest.cpp
77   )
78
79 if(MSVC)
80   list(APPEND JITTestsSources ExecutionEngine/JIT/JITTests.def)
81 endif()
82
83 add_llvm_unittest(JIT ${JITTestsSources})
84
85 add_llvm_unittest(Transforms
86   Transforms/Utils/Cloning.cpp
87   )
88
89 set(VMCoreSources
90   VMCore/ConstantsTest.cpp
91   VMCore/DerivedTypesTest.cpp
92   VMCore/InstructionsTest.cpp
93   VMCore/MetadataTest.cpp
94   VMCore/PassManagerTest.cpp
95   VMCore/ValueMapTest.cpp
96   VMCore/VerifierTest.cpp
97   )
98
99 # MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
100 # See issue#331418 in Visual Studio.
101 if(MSVC AND MSVC_VERSION LESS 1600)
102   list(REMOVE_ITEM VMCoreSources VMCore/ValueMapTest.cpp)
103 endif()
104
105 add_llvm_unittest(VMCore ${VMCoreSources})
106
107 set(LLVM_LINK_COMPONENTS
108   System
109   Support
110   Core
111   )
112
113 add_llvm_unittest(Support
114   Support/AllocatorTest.cpp
115   Support/Casting.cpp
116   Support/CommandLineTest.cpp
117   Support/ConstantRangeTest.cpp
118   Support/EndianTest.cpp
119   Support/LeakDetectorTest.cpp
120   Support/MathExtrasTest.cpp
121   Support/raw_ostream_test.cpp
122   Support/RegexTest.cpp
123   Support/SwapByteOrderTest.cpp
124   Support/TypeBuilderTest.cpp
125   Support/ValueHandleTest.cpp
126   )
127
128 set(LLVM_LINK_COMPONENTS
129   System
130   )
131
132 add_llvm_unittest(System
133   System/Path.cpp
134   System/TimeValue.cpp
135   )