System make on FreeBSD is missing some GNU make features so out of the box you get a lot of: ``` make: "<...>/Makefile.rules" line 569: Invalid line type ``` To solve this, you can install gmake which is a port of GNU make. However because we prefer 'make', gmake won't be used unless you set LLDB_TEST_MAKE. To fix that, prefer 'gmake'. Also check (as best we can) that the make we found is GNU make. This won't be perfect but it's better than the cryptic error shown above. ``` -- Found make: /usr/bin/make CMake Warning at /home/ec2-user/llvm-project/lldb/test/API/CMakeLists.txt:63 (message): 'make' tool /usr/bin/make may not be GNU make compatible. Some tests may fail to build. Provide a GNU compatible 'make' tool by setting LLDB_TEST_MAKE. ``` When a make isn't found at all, the warning message will show the names we tried: ``` -- Did not find one of: gmake make CMake Warning at /home/ec2-user/llvm-project/lldb/test/API/CMakeLists.txt:69 (message): Many LLDB API tests require a 'make' tool. Please provide it in Path or pass via LLDB_TEST_MAKE. ```
217 lines
9.2 KiB
CMake
217 lines
9.2 KiB
CMake
add_custom_target(lldb-api-test-deps)
|
|
set_target_properties(lldb-api-test-deps PROPERTIES FOLDER "LLDB/Tests")
|
|
add_dependencies(lldb-api-test-deps lldb-test-depends)
|
|
|
|
add_lit_testsuites(LLDB-API
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
DEPENDS lldb-api-test-deps)
|
|
|
|
function(add_python_test_target name test_script args comment)
|
|
set(PYTHON_TEST_COMMAND
|
|
${Python3_EXECUTABLE}
|
|
${test_script}
|
|
${args}
|
|
)
|
|
|
|
add_custom_target(${name}
|
|
COMMAND ${PYTHON_TEST_COMMAND} ${ARG_DEFAULT_ARGS}
|
|
COMMENT "${comment}"
|
|
USES_TERMINAL
|
|
)
|
|
add_dependencies(${name} lldb-test-depends)
|
|
endfunction()
|
|
|
|
# The default architecture with which to compile test executables is the
|
|
# default LLVM target architecture, which itself defaults to the host
|
|
# architecture.
|
|
if(NOT LLDB_DEFAULT_TEST_ARCH)
|
|
string(REGEX MATCH "^[^-]*" LLDB_DEFAULT_TEST_ARCH ${LLVM_HOST_TRIPLE})
|
|
endif ()
|
|
|
|
# Allow the user to override the default by setting LLDB_TEST_ARCH
|
|
set(LLDB_TEST_ARCH
|
|
${LLDB_DEFAULT_TEST_ARCH}
|
|
CACHE STRING "Specify the architecture to run LLDB tests as (x86|x64). Determines whether tests are compiled with -m32 or -m64")
|
|
|
|
# Users can override LLDB_TEST_USER_ARGS to specify arbitrary arguments to pass to the script
|
|
set(LLDB_TEST_USER_ARGS
|
|
""
|
|
CACHE STRING "Specify additional arguments to pass to test runner. Separate \
|
|
items with \";\". For example: '-C;gcc;-C;clang;-A;i386;-A;x86_64'")
|
|
|
|
set(LLDB_TEST_COMMON_ARGS_VAR
|
|
-u CXXFLAGS
|
|
-u CFLAGS
|
|
)
|
|
|
|
# Set the path to the default lldb test executable.
|
|
set(LLDB_DEFAULT_TEST_EXECUTABLE "${LLVM_RUNTIME_OUTPUT_INTDIR}/lldb${CMAKE_EXECUTABLE_SUFFIX}")
|
|
|
|
set(LLDB_DEFAULT_TEST_DSYMUTIL "${LLVM_TOOLS_BINARY_DIR}/dsymutil${CMAKE_EXECUTABLE_SUFFIX}")
|
|
|
|
if(LLDB_TEST_MAKE)
|
|
set(LLDB_DEFAULT_TEST_MAKE ${LLDB_TEST_MAKE})
|
|
else()
|
|
# Prefer gmake as it will be a version of GNU make. 'make' could be GNU compatible or not.
|
|
set(MAKE_NAMES "gmake" "make")
|
|
find_program(LLDB_DEFAULT_TEST_MAKE NAMES ${MAKE_NAMES})
|
|
if(LLDB_DEFAULT_TEST_MAKE)
|
|
message(STATUS "Found make: ${LLDB_DEFAULT_TEST_MAKE}")
|
|
execute_process(COMMAND ${LLDB_DEFAULT_TEST_MAKE} --version OUTPUT_VARIABLE MAKE_VERSION
|
|
ERROR_QUIET)
|
|
if(NOT MAKE_VERSION MATCHES "^GNU Make")
|
|
message(WARNING "'make' tool ${LLDB_DEFAULT_TEST_MAKE} may not be GNU make compatible. "
|
|
"Some tests may fail to build. Provide a GNU compatible 'make' tool by setting "
|
|
"LLDB_TEST_MAKE.")
|
|
endif()
|
|
else()
|
|
list(JOIN "${MAKE_NAMES}" " " MAKE_NAMES_SPACES)
|
|
string(REPLACE ";" " " MAKE_NAMES_SPACES "${MAKE_NAMES}")
|
|
message(STATUS "Did not find one of: ${MAKE_NAMES_SPACES}")
|
|
message(WARNING
|
|
"Many LLDB API tests require a 'make' tool. Please provide it in Path "
|
|
"or pass via LLDB_TEST_MAKE.")
|
|
endif()
|
|
endif()
|
|
|
|
if (TARGET clang)
|
|
set(LLDB_DEFAULT_TEST_COMPILER "${LLVM_TOOLS_BINARY_DIR}/clang${CMAKE_EXECUTABLE_SUFFIX}")
|
|
else()
|
|
set(LLDB_DEFAULT_TEST_COMPILER "")
|
|
endif()
|
|
|
|
set(LLDB_TEST_EXECUTABLE "${LLDB_DEFAULT_TEST_EXECUTABLE}" CACHE PATH "lldb executable used for testing")
|
|
set(LLDB_TEST_COMPILER "${LLDB_DEFAULT_TEST_COMPILER}" CACHE PATH "C Compiler to use for building LLDB test inferiors")
|
|
set(LLDB_TEST_DSYMUTIL "${LLDB_DEFAULT_TEST_DSYMUTIL}" CACHE PATH "dsymutil used for generating dSYM bundles")
|
|
set(LLDB_TEST_MAKE "${LLDB_DEFAULT_TEST_MAKE}" CACHE PATH "make tool used for building test executables")
|
|
|
|
if ("${LLDB_TEST_COMPILER}" STREQUAL "")
|
|
message(FATAL_ERROR "LLDB test compiler not specified. Tests will not run.")
|
|
endif()
|
|
|
|
if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
|
|
set(LLDB_TEST_DEBUG_TEST_CRASHES
|
|
0
|
|
CACHE BOOL "(Windows only) Enables debugging of tests in the test suite by showing the crash dialog when lldb crashes")
|
|
|
|
set(LLDB_TEST_HIDE_CONSOLE_WINDOWS
|
|
1
|
|
CACHE BOOL "(Windows only) Hides the console window for an inferior when it is launched through the test suite")
|
|
|
|
if (LLDB_TEST_DEBUG_TEST_CRASHES)
|
|
set(LLDB_TEST_COMMON_ARGS_VAR ${LLDB_TEST_COMMON_ARGS_VAR} --enable-crash-dialog)
|
|
endif()
|
|
|
|
if (NOT LLDB_TEST_HIDE_CONSOLE_WINDOWS)
|
|
set(LLDB_TEST_COMMON_ARGS_VAR ${LLDB_TEST_COMMON_ARGS_VAR} --show-inferior-console)
|
|
endif()
|
|
endif()
|
|
|
|
if (NOT "${LLDB_LIT_TOOLS_DIR}" STREQUAL "")
|
|
if (NOT EXISTS "${LLDB_LIT_TOOLS_DIR}")
|
|
message(WARNING "LLDB_LIT_TOOLS_DIR ${LLDB_LIT_TOOLS_DIR} does not exist.")
|
|
endif()
|
|
endif()
|
|
|
|
if(CMAKE_HOST_APPLE)
|
|
if(LLDB_BUILD_FRAMEWORK)
|
|
set(LLDB_FRAMEWORK_DIR ${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework)
|
|
endif()
|
|
|
|
if(LLDB_USE_SYSTEM_DEBUGSERVER)
|
|
lldb_find_system_debugserver(system_debugserver_path)
|
|
if(LLDB_BUILD_FRAMEWORK)
|
|
add_custom_target(debugserver
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${system_debugserver_path} $<TARGET_FILE_DIR:liblldb>/Resources
|
|
COMMENT "Copying the system debugserver to LLDB.framework's resource directory for testing.")
|
|
else()
|
|
add_custom_target(debugserver
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${system_debugserver_path} ${LLVM_RUNTIME_OUTPUT_INTDIR}
|
|
COMMENT "Copying the system debugserver to LLDB's binaries directory for testing.")
|
|
endif()
|
|
message(STATUS "LLDB tests use out-of-tree debugserver: ${system_debugserver_path}")
|
|
list(APPEND LLDB_TEST_COMMON_ARGS_VAR --out-of-tree-debugserver)
|
|
add_lldb_test_dependency(debugserver)
|
|
else()
|
|
message(STATUS "LLDB tests use just-built debug server")
|
|
endif()
|
|
endif()
|
|
|
|
set(dotest_args_replacement ${LLVM_BUILD_MODE})
|
|
|
|
if(LLDB_BUILT_STANDALONE)
|
|
# In paths to our build-tree, replace CMAKE_CFG_INTDIR with our configuration name placeholder.
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} config_runtime_output_dir ${LLVM_RUNTIME_OUTPUT_INTDIR})
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_TEST_COMMON_ARGS_VAR "${LLDB_TEST_COMMON_ARGS_VAR}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_TEST_USER_ARGS "${LLDB_TEST_USER_ARGS}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_SOURCE_DIR "${LLDB_SOURCE_DIR}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_FRAMEWORK_DIR "${LLDB_FRAMEWORK_DIR}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_TEST_BUILD_DIRECTORY "${LLDB_TEST_BUILD_DIRECTORY}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_TEST_EXECUTABLE "${LLDB_TEST_EXECUTABLE}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_TEST_COMPILER "${LLDB_TEST_COMPILER}")
|
|
string(REPLACE ${LLVM_RUNTIME_OUTPUT_INTDIR} ${config_runtime_output_dir} LLDB_TEST_DSYMUTIL "${LLDB_TEST_DSYMUTIL}")
|
|
|
|
# Remaining ones must be paths to the provided LLVM build-tree.
|
|
if(LLVM_CONFIGURATION_TYPES)
|
|
# LLDB uses single-config; LLVM multi-config; pick one and prefer Release types.
|
|
# Otherwise, if both use multi-config the default is fine.
|
|
if(NOT CMAKE_CONFIGURATION_TYPES)
|
|
if(RelWithDebInfo IN_LIST LLVM_CONFIGURATION_TYPES)
|
|
set(dotest_args_replacement RelWithDebInfo)
|
|
elseif(Release IN_LIST LLVM_CONFIGURATION_TYPES)
|
|
set(dotest_args_replacement Release)
|
|
else()
|
|
list(GET LLVM_CONFIGURATION_TYPES 0 dotest_args_replacement)
|
|
endif()
|
|
endif()
|
|
else()
|
|
# Common case: LLVM used a single-configuration generator like Ninja.
|
|
set(dotest_args_replacement ".")
|
|
endif()
|
|
endif()
|
|
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_TEST_COMMON_ARGS_VAR "${LLDB_TEST_COMMON_ARGS_VAR}")
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_TEST_USER_ARGS "${LLDB_TEST_USER_ARGS}")
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_SOURCE_DIR "${LLDB_SOURCE_DIR}")
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_TEST_BUILD_DIRECTORY "${LLDB_TEST_BUILD_DIRECTORY}")
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_TEST_EXECUTABLE "${LLDB_TEST_EXECUTABLE}")
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_TEST_COMPILER "${LLDB_TEST_COMPILER}")
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${dotest_args_replacement} LLDB_TEST_DSYMUTIL "${LLDB_TEST_DSYMUTIL}")
|
|
|
|
set(LLDB_TEST_COMMON_ARGS ${LLDB_TEST_COMMON_ARGS_VAR} CACHE INTERNAL STRING)
|
|
|
|
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)
|
|
|
|
# Targets for running the test suite on the different Apple simulators.
|
|
add_lit_testsuite(check-lldb-simulator-ios
|
|
"Running lldb test suite on the iOS simulator"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
PARAMS "lldb-run-with-simulator=ios"
|
|
EXCLUDE_FROM_CHECK_ALL
|
|
DEPENDS lldb-api-test-deps)
|
|
|
|
add_lit_testsuite(check-lldb-simulator-watchos
|
|
"Running lldb test suite on the watchOS simulator"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
PARAMS "lldb-run-with-simulator=watchos"
|
|
EXCLUDE_FROM_CHECK_ALL
|
|
DEPENDS lldb-api-test-deps)
|
|
|
|
add_lit_testsuite(check-lldb-simulator-tvos
|
|
"Running lldb test suite on the tvOS simulator"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
PARAMS "lldb-run-with-simulator=tvos"
|
|
EXCLUDE_FROM_CHECK_ALL
|
|
DEPENDS lldb-api-test-deps)
|
|
|
|
add_lit_testsuite(check-lldb-api "Running lldb api test suite"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
EXCLUDE_FROM_CHECK_ALL
|
|
DEPENDS lldb-api-test-deps)
|