blob: 76b76f2b88f0856fbd9075e80f9d80080017bece [file] [log] [blame]
Michael J. Spenceree6944f2010-09-24 09:01:13 +00001function(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()
Oscar Fuentes066de852010-09-25 20:25:25 +000012 add_llvm_executable(${test_name}Tests ${ARGN})
Oscar Fuentesda975632010-10-28 14:38:35 +000013 add_dependencies(UnitTests ${test_name}Tests)
Michael J. Spenceree6944f2010-09-24 09:01:13 +000014endfunction()
15
Oscar Fuentesda975632010-10-28 14:38:35 +000016add_custom_target(UnitTests)
17
Michael J. Spenceree6944f2010-09-24 09:01:13 +000018include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
Michael J. Spencer8a806ae2010-10-19 18:04:19 +000019add_definitions(-DGTEST_HAS_RTTI=0)
Michael J. Spenceree6944f2010-09-24 09:01:13 +000020
21set(LLVM_LINK_COMPONENTS
22 jit
23 interpreter
24 nativecodegen
25 BitWriter
26 BitReader
27 AsmParser
28 Core
29 System
30 Support
31 )
32
33set(LLVM_USED_LIBS
34 gtest
35 gtest_main
36 )
37
38add_llvm_unittest(ADT
39 ADT/APFloatTest.cpp
40 ADT/APIntTest.cpp
41 ADT/BitVectorTest.cpp
42 ADT/DAGDeltaAlgorithmTest.cpp
43 ADT/DeltaAlgorithmTest.cpp
44 ADT/DenseMapTest.cpp
45 ADT/DenseSetTest.cpp
Dale Johannesena197cba2010-11-19 23:23:22 +000046 ADT/FoldingSet.cpp
Michael J. Spenceree6944f2010-09-24 09:01:13 +000047 ADT/ilistTest.cpp
48 ADT/ImmutableSetTest.cpp
Jakob Stoklund Olesen8dc92672010-11-19 04:47:19 +000049 ADT/IntervalMapTest.cpp
Michael J. Spenceree6944f2010-09-24 09:01:13 +000050 ADT/SmallBitVectorTest.cpp
51 ADT/SmallStringTest.cpp
52 ADT/SmallVectorTest.cpp
53 ADT/SparseBitVectorTest.cpp
54 ADT/StringMapTest.cpp
55 ADT/StringRefTest.cpp
56 ADT/TripleTest.cpp
57 ADT/TwineTest.cpp
Douglas Gregorc576d3d2010-09-27 16:40:43 +000058 )
Michael J. Spenceree6944f2010-09-24 09:01:13 +000059
60add_llvm_unittest(Analysis
61 Analysis/ScalarEvolutionTest.cpp
62 )
63
64add_llvm_unittest(ExecutionEngine
65 ExecutionEngine/ExecutionEngineTest.cpp
66 )
67
NAKAMURA Takumi0f60ddc2010-11-19 03:19:42 +000068set(JITTestsSources
Michael J. Spenceree6944f2010-09-24 09:01:13 +000069 ExecutionEngine/JIT/JITEventListenerTest.cpp
70 ExecutionEngine/JIT/JITMemoryManagerTest.cpp
71 ExecutionEngine/JIT/JITTest.cpp
72 ExecutionEngine/JIT/MultiJITTest.cpp
73 )
74
NAKAMURA Takumi0f60ddc2010-11-19 03:19:42 +000075if(MSVC)
76 list(APPEND JITTestsSources ExecutionEngine/JIT/JITTests.def)
77endif()
78
79add_llvm_unittest(JIT ${JITTestsSources})
80
Michael J. Spencer12647eb2010-10-11 21:22:34 +000081add_llvm_unittest(Transforms
82 Transforms/Utils/Cloning.cpp
83 )
84
NAKAMURA Takumi130a2dd2010-11-19 03:19:32 +000085set(VMCoreSources
Michael J. Spencer12647eb2010-10-11 21:22:34 +000086 VMCore/ConstantsTest.cpp
87 VMCore/DerivedTypesTest.cpp
88 VMCore/InstructionsTest.cpp
89 VMCore/MetadataTest.cpp
90 VMCore/PassManagerTest.cpp
NAKAMURA Takumib08ca272010-11-14 12:37:51 +000091 VMCore/ValueMapTest.cpp
Michael J. Spencer12647eb2010-10-11 21:22:34 +000092 VMCore/VerifierTest.cpp
93 )
94
NAKAMURA Takumi130a2dd2010-11-19 03:19:32 +000095# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
96# See issue#331418 in Visual Studio.
97if(MSVC AND MSVC_VERSION LESS 1600)
98 list(REMOVE_ITEM VMCoreSources VMCore/ValueMapTest.cpp)
99endif()
100
101add_llvm_unittest(VMCore ${VMCoreSources})
102
Michael J. Spencer12647eb2010-10-11 21:22:34 +0000103set(LLVM_LINK_COMPONENTS
104 System
105 Support
106 Core
107 )
108
Michael J. Spenceree6944f2010-09-24 09:01:13 +0000109add_llvm_unittest(Support
110 Support/AllocatorTest.cpp
111 Support/Casting.cpp
112 Support/CommandLineTest.cpp
113 Support/ConstantRangeTest.cpp
Michael J. Spencer5e0b2bf2010-10-21 20:28:21 +0000114 Support/EndianTest.cpp
Michael J. Spenceree6944f2010-09-24 09:01:13 +0000115 Support/LeakDetectorTest.cpp
116 Support/MathExtrasTest.cpp
117 Support/raw_ostream_test.cpp
118 Support/RegexTest.cpp
Michael J. Spencer4c099b82010-10-11 21:56:16 +0000119 Support/SwapByteOrderTest.cpp
Michael J. Spencer5e0b2bf2010-10-21 20:28:21 +0000120 Support/System.cpp
Michael J. Spenceree6944f2010-09-24 09:01:13 +0000121 Support/TypeBuilderTest.cpp
122 Support/ValueHandleTest.cpp
123 )