X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=unittests%2FCMakeLists.txt;h=e5befcec6e0f1cf47ada1a66cad295f5fb91501f;hb=3a52c6e4b7ba49898b1700f3c39fc2f7b7913746;hp=43dfd239ef3c734f2fba53a420c9375bfd930f87;hpb=af72684eeab67c227e4ee45cc91ae05513102fa8;p=oota-llvm.git diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt index 43dfd239ef3..e5befcec6e0 100644 --- a/unittests/CMakeLists.txt +++ b/unittests/CMakeLists.txt @@ -1,100 +1,28 @@ -function(add_llvm_unittest test_name) - if (CMAKE_BUILD_TYPE) - set(CMAKE_RUNTIME_OUTPUT_DIRECTORY - ${LLVM_BINARY_DIR}/unittests/${test_name}/${CMAKE_BUILD_TYPE}) - else() - set(CMAKE_RUNTIME_OUTPUT_DIRECTORY - ${LLVM_BINARY_DIR}/unittests/${test_name}) - endif() - if( NOT LLVM_BUILD_TESTS ) - set(EXCLUDE_FROM_ALL ON) - endif() - add_llvm_executable(${test_name}Tests ${ARGN}) -endfunction() - -include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include) - -set(LLVM_LINK_COMPONENTS - jit - interpreter - nativecodegen - BitWriter - BitReader - AsmParser - Core - System - Support - ) - -set(LLVM_USED_LIBS - gtest - gtest_main - ) - -add_llvm_unittest(ADT - 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 - ADT/SmallBitVectorTest.cpp - ADT/SmallStringTest.cpp - ADT/SmallVectorTest.cpp - ADT/SparseBitVectorTest.cpp - ADT/StringMapTest.cpp - ADT/StringRefTest.cpp - ADT/TripleTest.cpp - ADT/TwineTest.cpp - ) +add_custom_target(UnitTests) +set_target_properties(UnitTests PROPERTIES FOLDER "Tests") -add_llvm_unittest(Analysis - Analysis/ScalarEvolutionTest.cpp - ) +if (APPLE) + set(CMAKE_INSTALL_RPATH "@executable_path/../../lib") +else(UNIX) + set(CMAKE_INSTALL_RPATH "\$ORIGIN/../../lib${LLVM_LIBDIR_SUFFIX}") +endif() -add_llvm_unittest(ExecutionEngine - ExecutionEngine/ExecutionEngineTest.cpp - ) - -add_llvm_unittest(JIT - ExecutionEngine/JIT/JITEventListenerTest.cpp - ExecutionEngine/JIT/JITMemoryManagerTest.cpp - ExecutionEngine/JIT/JITTest.cpp - ExecutionEngine/JIT/MultiJITTest.cpp - ) - -add_llvm_unittest(Transforms - Transforms/Utils/Cloning.cpp - ) - -add_llvm_unittest(VMCore - VMCore/ConstantsTest.cpp - VMCore/DerivedTypesTest.cpp - VMCore/InstructionsTest.cpp - VMCore/MetadataTest.cpp - VMCore/PassManagerTest.cpp - VMCore/VerifierTest.cpp - ) - -set(LLVM_LINK_COMPONENTS - System - Support - Core - ) +function(add_llvm_unittest test_dirname) + add_unittest(UnitTests ${test_dirname} ${ARGN}) +endfunction() -add_llvm_unittest(Support - Support/AllocatorTest.cpp - Support/Casting.cpp - Support/CommandLineTest.cpp - Support/ConstantRangeTest.cpp - Support/LeakDetectorTest.cpp - Support/MathExtrasTest.cpp - Support/raw_ostream_test.cpp - Support/RegexTest.cpp - Support/System.cpp - Support/TypeBuilderTest.cpp - Support/ValueHandleTest.cpp - ) +add_subdirectory(ADT) +add_subdirectory(Analysis) +add_subdirectory(AsmParser) +add_subdirectory(Bitcode) +add_subdirectory(CodeGen) +add_subdirectory(DebugInfo) +add_subdirectory(ExecutionEngine) +add_subdirectory(IR) +add_subdirectory(LineEditor) +add_subdirectory(Linker) +add_subdirectory(MC) +add_subdirectory(Option) +add_subdirectory(ProfileData) +add_subdirectory(Support) +add_subdirectory(Transforms)