mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 07:31:28 +00:00
dfa357026b
Instead of adding individual dependencies on the enabled runtimes, make
the `lldb-test-depends` target depend on the `runtimes` target. The
`cxx` target broke after 0fc8f0b
.
274 lines
9.4 KiB
CMake
274 lines
9.4 KiB
CMake
# Test runner infrastructure for LLDB. This configures the LLDB test trees
|
|
# for use by Lit, and delegates to LLVM's lit test handlers.
|
|
# Lit requires a Python3 interpreter, let's be careful and fail early if it's
|
|
# not present.
|
|
if (NOT DEFINED Python3_EXECUTABLE)
|
|
message(FATAL_ERROR
|
|
"LLDB test suite requires a Python3 interpreter but none "
|
|
"was found. Please install Python3 or disable tests with "
|
|
"`LLDB_INCLUDE_TESTS=OFF`.")
|
|
endif()
|
|
|
|
if(LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS)
|
|
message(STATUS "Enforcing strict test requirements for LLDB")
|
|
set(useful_python_modules
|
|
psutil # Lit uses psutil to do per-test timeouts.
|
|
)
|
|
foreach(module ${useful_python_modules})
|
|
lldb_find_python_module(${module})
|
|
if (NOT PY_${module}_FOUND)
|
|
message(FATAL_ERROR
|
|
"Python module '${module}' not found. Please install it via pip or via "
|
|
"your operating system's package manager. Alternatively, disable "
|
|
"strict testing requirements with "
|
|
"`LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS=OFF`")
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
|
|
if(LLDB_BUILT_STANDALONE)
|
|
# In order to run check-lldb-* we need the correct map_config directives in
|
|
# llvm-lit. Because this is a standalone build, LLVM doesn't know about LLDB,
|
|
# and the lldb mappings are missing. We build our own llvm-lit, and tell LLVM
|
|
# to use the llvm-lit in the lldb build directory.
|
|
if (EXISTS ${LLVM_MAIN_SRC_DIR}/utils/llvm-lit)
|
|
set(LLVM_EXTERNAL_LIT ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/llvm-lit)
|
|
endif()
|
|
endif()
|
|
|
|
# Configure the build directory.
|
|
# The .noindex suffix is a marker for Spotlight to never index the
|
|
# build directory. LLDB queries Spotlight to locate .dSYM bundles
|
|
# based on the UUID embedded in a binary, and because the UUID is a
|
|
# hash of filename and .text section, there *will* be conflicts inside
|
|
# the build directory.
|
|
set(LLDB_TEST_BUILD_DIRECTORY "${PROJECT_BINARY_DIR}/lldb-test-build.noindex" CACHE PATH "The build root for building tests.")
|
|
|
|
# Configure and create module cache directories.
|
|
set(LLDB_TEST_MODULE_CACHE_LLDB "${LLDB_TEST_BUILD_DIRECTORY}/module-cache-lldb" CACHE PATH "The Clang module cache used by the Clang embedded in LLDB while running tests.")
|
|
set(LLDB_TEST_MODULE_CACHE_CLANG "${LLDB_TEST_BUILD_DIRECTORY}/module-cache-clang" CACHE PATH "The Clang module cache used by the Clang while building tests.")
|
|
file(MAKE_DIRECTORY ${LLDB_TEST_MODULE_CACHE_LLDB})
|
|
file(MAKE_DIRECTORY ${LLDB_TEST_MODULE_CACHE_CLANG})
|
|
|
|
# Windows and Linux have no built-in ObjC runtime. Turn this on in order to run tests with GNUstep.
|
|
option(LLDB_TEST_OBJC_GNUSTEP "Enable ObjC tests with GNUstep libobjc2 on non-Apple platforms" Off)
|
|
set(LLDB_TEST_OBJC_GNUSTEP_DIR "" CACHE PATH "Custom path to the GNUstep shared library")
|
|
|
|
if (LLDB_TEST_OBJC_GNUSTEP)
|
|
if (LLDB_TEST_OBJC_GNUSTEP_DIR)
|
|
set(GNUstepObjC_DIR ${LLDB_TEST_OBJC_GNUSTEP_DIR})
|
|
endif()
|
|
find_package(GNUstepObjC)
|
|
if (NOT GNUstepObjC_FOUND)
|
|
if (LLDB_TEST_OBJC_GNUSTEP_DIR)
|
|
message(FATAL_ERROR "Failed to find GNUstep libobjc2 in ${LLDB_TEST_OBJC_GNUSTEP_DIR}. "
|
|
"Please check LLDB_TEST_OBJC_GNUSTEP_DIR or turn off LLDB_TEST_OBJC_GNUSTEP.")
|
|
else()
|
|
message(FATAL_ERROR "Failed to find GNUstep libobjc2. "
|
|
"Please set LLDB_TEST_OBJC_GNUSTEP_DIR or turn off LLDB_TEST_OBJC_GNUSTEP.")
|
|
endif()
|
|
endif()
|
|
set(LLDB_TEST_OBJC_GNUSTEP_DIR ${GNUstepObjC_DIR})
|
|
elseif (LLDB_TEST_OBJC_GNUSTEP_DIR)
|
|
message(STATUS "Reset LLDB_TEST_OBJC_GNUSTEP_DIR since LLDB_TEST_OBJC_GNUSTEP is off")
|
|
set(LLDB_TEST_OBJC_GNUSTEP_DIR "" CACHE PATH "Custom path to the GNUstep shared library" FORCE)
|
|
endif()
|
|
|
|
# LLVM_BUILD_MODE is used in lit.site.cfg
|
|
if (CMAKE_CFG_INTDIR STREQUAL ".")
|
|
set(LLVM_BUILD_MODE ".")
|
|
else ()
|
|
set(LLVM_BUILD_MODE "%(build_mode)s")
|
|
endif ()
|
|
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLDB_LIBS_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLDB_TOOLS_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
|
|
|
|
# Create a custom target to track test dependencies.
|
|
add_custom_target(lldb-test-depends)
|
|
set_target_properties(lldb-test-depends PROPERTIES FOLDER "lldb misc")
|
|
|
|
# Create an alias for the legacy name of lldb-test-depends
|
|
add_custom_target(lldb-test-deps)
|
|
add_dependencies(lldb-test-deps lldb-test-depends)
|
|
|
|
function(add_lldb_test_dependency)
|
|
foreach(dependency ${ARGN})
|
|
add_dependencies(lldb-test-depends ${dependency})
|
|
endforeach()
|
|
endfunction(add_lldb_test_dependency)
|
|
|
|
# lldb itself and lldb-test is an hard dependency for the testsuites.
|
|
add_lldb_test_dependency(lldb)
|
|
add_lldb_test_dependency(lldb-test)
|
|
|
|
# On Darwin, darwin-debug is an hard dependency for the testsuites.
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
add_lldb_test_dependency(darwin-debug)
|
|
endif()
|
|
|
|
if(TARGET debugserver)
|
|
add_lldb_test_dependency(debugserver)
|
|
endif()
|
|
if(TARGET lldb-server)
|
|
add_lldb_test_dependency(lldb-server)
|
|
endif()
|
|
|
|
if(TARGET lldb-dap)
|
|
add_lldb_test_dependency(lldb-dap)
|
|
endif()
|
|
|
|
if(TARGET liblldb)
|
|
add_lldb_test_dependency(liblldb)
|
|
endif()
|
|
|
|
if(TARGET lldb-framework)
|
|
add_lldb_test_dependency(lldb-framework)
|
|
endif()
|
|
|
|
# Add dependencies that are not exported targets when building standalone.
|
|
if(NOT LLDB_BUILT_STANDALONE)
|
|
add_lldb_test_dependency(
|
|
FileCheck
|
|
count
|
|
dsymutil
|
|
llvm-strip
|
|
not
|
|
split-file
|
|
yaml2obj
|
|
)
|
|
endif()
|
|
|
|
if (LLVM_ENABLE_RUNTIMES)
|
|
add_lldb_test_dependency(runtimes)
|
|
endif()
|
|
|
|
# Add dependencies if we test with the in-tree clang.
|
|
# This works with standalone builds as they import the clang target.
|
|
if(TARGET clang)
|
|
add_lldb_test_dependency(clang)
|
|
|
|
# TestFullLtoStepping depends on LTO, and only runs when the compiler is clang.
|
|
add_lldb_test_dependency(LTO)
|
|
|
|
if (TARGET libcxx OR ("libcxx" IN_LIST LLVM_ENABLE_RUNTIMES))
|
|
set(LLDB_HAS_LIBCXX ON)
|
|
if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
|
set(LIBCXX_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${LLVM_DEFAULT_TARGET_TRIPLE})
|
|
set(LIBCXX_GENERATED_INCLUDE_DIR "${LLVM_BINARY_DIR}/include/c++/v1")
|
|
set(LIBCXX_GENERATED_INCLUDE_TARGET_DIR "${LLVM_BINARY_DIR}/include/${LLVM_DEFAULT_TARGET_TRIPLE}/c++/v1")
|
|
else()
|
|
set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
|
|
set(LIBCXX_GENERATED_INCLUDE_DIR "${CMAKE_BINARY_DIR}/include/c++/v1")
|
|
endif()
|
|
endif()
|
|
|
|
if (TARGET compiler-rt OR "compiler-rt" IN_LIST LLVM_ENABLE_RUNTIMES)
|
|
set(LLDB_HAS_COMPILER_RT ON)
|
|
endif()
|
|
|
|
if(APPLE AND NOT LLVM_TARGET_IS_CROSSCOMPILE_HOST)
|
|
# FIXME: Standalone builds should import the cxx target as well.
|
|
if(LLDB_BUILT_STANDALONE)
|
|
# For now check that the include directory exists.
|
|
set(cxx_dir "${LLDB_TEST_LIBCXX_ROOT_DIR}/include/c++")
|
|
if(EXISTS ${cxx_dir})
|
|
# These variables make sure the API tests can run against a custom
|
|
# build of libcxx even for standalone builds.
|
|
set(LLDB_HAS_LIBCXX ON)
|
|
set(LIBCXX_LIBRARY_DIR "${LLDB_TEST_LIBCXX_ROOT_DIR}/lib${LIBCXX_LIBDIR_SUFFIX}")
|
|
set(LIBCXX_GENERATED_INCLUDE_DIR "${LLDB_TEST_LIBCXX_ROOT_DIR}/include/c++/v1")
|
|
else()
|
|
message(FATAL_ERROR
|
|
"Couldn't find libcxx build in '${LLDB_TEST_LIBCXX_ROOT_DIR}'. To run the "
|
|
"test-suite for a standalone LLDB build please build libcxx and point "
|
|
"LLDB_TEST_LIBCXX_ROOT_DIR to it.")
|
|
endif()
|
|
else()
|
|
# We require libcxx for the test suite, so if we aren't building it,
|
|
# provide a helpful error about how to resolve the situation.
|
|
if(NOT LLDB_HAS_LIBCXX)
|
|
message(FATAL_ERROR
|
|
"LLDB test suite requires libc++, but it is currently disabled. "
|
|
"Please add `libcxx` to `LLVM_ENABLE_RUNTIMES` or disable tests via "
|
|
"`LLDB_INCLUDE_TESTS=OFF`.")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if (LLDB_BUILT_STANDALONE)
|
|
set(LLVM_HOST_TRIPLE ${LLVM_TARGET_TRIPLE})
|
|
endif()
|
|
|
|
add_lldb_test_dependency(
|
|
lit-cpuid
|
|
llc
|
|
lli
|
|
llvm-config
|
|
llvm-dwarfdump
|
|
llvm-dwp
|
|
llvm-nm
|
|
llvm-mc
|
|
llvm-objcopy
|
|
llvm-pdbutil
|
|
llvm-readobj
|
|
llvm-ar
|
|
)
|
|
|
|
if(TARGET lld)
|
|
add_lldb_test_dependency(lld)
|
|
else()
|
|
# LLD is required to link test executables on Windows.
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
message(WARNING "lld required to test LLDB on Windows")
|
|
endif()
|
|
endif()
|
|
|
|
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
set(LLDB_IS_64_BITS 1)
|
|
endif()
|
|
|
|
# These values are not canonicalized within LLVM.
|
|
llvm_canonicalize_cmake_booleans(
|
|
LLDB_BUILD_INTEL_PT
|
|
LLDB_ENABLE_PYTHON
|
|
LLDB_ENABLE_LUA
|
|
LLDB_ENABLE_LZMA
|
|
LLVM_ENABLE_ZLIB
|
|
LLVM_ENABLE_SHARED_LIBS
|
|
LLDB_HAS_LIBCXX
|
|
LLDB_TOOL_LLDB_SERVER_BUILD
|
|
LLDB_USE_SYSTEM_DEBUGSERVER
|
|
LLDB_IS_64_BITS)
|
|
|
|
# Configure the individual test suites.
|
|
add_subdirectory(API)
|
|
add_subdirectory(Shell)
|
|
add_subdirectory(Unit)
|
|
|
|
# Configure the top level test suite.
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg.py
|
|
MAIN_CONFIG
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.cfg.py)
|
|
|
|
add_lit_testsuite(check-lldb "Running lldb lit test suite"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
DEPENDS
|
|
lldb-api-test-deps
|
|
lldb-shell-test-deps
|
|
lldb-unit-test-deps)
|
|
set_target_properties(check-lldb PROPERTIES FOLDER "lldb tests")
|
|
|
|
if(LLDB_BUILT_STANDALONE)
|
|
# This has to happen *AFTER* add_lit_testsuite.
|
|
if (EXISTS ${LLVM_MAIN_SRC_DIR}/utils/llvm-lit)
|
|
# LLVM's make_paths_relative uses Python3_EXECUTABLE which isn't set in a
|
|
# standalone LLDB build.
|
|
set(Python3_EXECUTABLE ${Python3_EXECUTABLE})
|
|
add_subdirectory(${LLVM_MAIN_SRC_DIR}/utils/llvm-lit ${CMAKE_CURRENT_BINARY_DIR}/llvm-lit)
|
|
endif()
|
|
endif()
|