Newer
Older
add_custom_target(UnitTests)
set_target_properties(UnitTests PROPERTIES FOLDER "Tests")
function(add_llvm_unittest test_dirname)
add_unittest(UnitTests ${test_dirname} ${ARGN})
endfunction()
set(LLVM_LINK_COMPONENTS
jit
interpreter
nativecodegen
BitWriter
BitReader
AsmParser
Core
Support
)
add_llvm_unittest(ADTTests
ADT/APFloatTest.cpp
ADT/APIntTest.cpp
ADT/BitVectorTest.cpp
ADT/DAGDeltaAlgorithmTest.cpp
ADT/DeltaAlgorithmTest.cpp
ADT/DenseMapTest.cpp
ADT/DenseSetTest.cpp
ADT/ilistTest.cpp
ADT/ImmutableSetTest.cpp
Jakob Stoklund Olesen
committed
ADT/IntEqClassesTest.cpp
ADT/IntrusiveRefCntPtrTest.cpp
ADT/SCCIteratorTest.cpp
ADT/SmallPtrSetTest.cpp
ADT/SmallStringTest.cpp
ADT/SmallVectorTest.cpp
ADT/SparseBitVectorTest.cpp
ADT/SparseSetTest.cpp
ADT/StringMapTest.cpp
ADT/StringRefTest.cpp
ADT/TripleTest.cpp
ADT/TwineTest.cpp
ADT/VariadicFunctionTest.cpp
add_llvm_unittest(AnalysisTests
add_llvm_unittest(ExecutionEngineTests
Eli Bendersky
committed
ExecutionEngine/ExecutionEngineTest.cpp
)
Eli Bendersky
committed
if( LLVM_USE_INTEL_JITEVENTS )
include_directories( ${LLVM_INTEL_JITEVENTS_INCDIR} )
link_directories( ${LLVM_INTEL_JITEVENTS_LIBDIR} )
set(ProfileTestSources
Eli Bendersky
committed
ExecutionEngine/JIT/IntelJITEventListenerTest.cpp
Eli Bendersky
committed
)
set(LLVM_LINK_COMPONENTS
${LLVM_LINK_COMPONENTS}
IntelJITEvents
)
endif( LLVM_USE_INTEL_JITEVENTS )
if( LLVM_USE_OPROFILE )
set(ProfileTestSources
${ProfileTestSources}
Eli Bendersky
committed
ExecutionEngine/JIT/OProfileJITEventListenerTest.cpp
Eli Bendersky
committed
)
set(LLVM_LINK_COMPONENTS
${LLVM_LINK_COMPONENTS}
OProfileJIT
)
endif( LLVM_USE_OPROFILE )
NAKAMURA Takumi
committed
set(JITTestsSources
Eli Bendersky
committed
ExecutionEngine/JIT/JITEventListenerTest.cpp
ExecutionEngine/JIT/JITMemoryManagerTest.cpp
ExecutionEngine/JIT/JITTest.cpp
ExecutionEngine/JIT/MultiJITTest.cpp
Eli Bendersky
committed
${ProfileTestSources}
NAKAMURA Takumi
committed
if(MSVC)
list(APPEND JITTestsSources ExecutionEngine/JIT/JITTests.def)
endif()
add_llvm_unittest(ExecutionEngine/JITTests
${JITTestsSources}
)
NAKAMURA Takumi
committed
NAKAMURA Takumi
committed
set_property(TARGET JITTests PROPERTY LINK_FLAGS -Wl,--export-all-symbols)
endif()
add_llvm_unittest(Transforms/UtilsTests
Transforms/Utils/Cloning.cpp
)
NAKAMURA Takumi
committed
set(VMCoreSources
VMCore/DominatorTreeTest.cpp
VMCore/InstructionsTest.cpp
VMCore/MetadataTest.cpp
VMCore/PassManagerTest.cpp
NAKAMURA Takumi
committed
VMCore/ValueMapTest.cpp
VMCore/VerifierTest.cpp
)
NAKAMURA Takumi
committed
# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
# See issue#331418 in Visual Studio.
if(MSVC AND MSVC_VERSION LESS 1600)
list(REMOVE_ITEM VMCoreSources VMCore/ValueMapTest.cpp)
endif()
add_llvm_unittest(VMCoreTests
${VMCoreSources}
)
NAKAMURA Takumi
committed
add_llvm_unittest(BitcodeTests
Bitcode/BitReaderTest.cpp
)
set(LLVM_LINK_COMPONENTS
Support
Core
)
add_llvm_unittest(SupportTests
Support/AlignOfTest.cpp
Support/BlockFrequencyTest.cpp
Support/Casting.cpp
Support/CommandLineTest.cpp
Support/ConstantRangeTest.cpp
Support/DataExtractorTest.cpp
Support/IntegersSubsetTest.cpp
Support/IRBuilderTest.cpp
Support/ManagedStatic.cpp
Support/MDBuilderTest.cpp
Support/Path.cpp
Support/raw_ostream_test.cpp
Support/RegexTest.cpp
Support/SwapByteOrderTest.cpp
Support/TimeValue.cpp
Support/TypeBuilderTest.cpp
Support/ValueHandleTest.cpp