forked from OSchip/llvm-project
[runtimes] Print the testing configuration in use in libunwind and libc++abi
We do it for libc++, and it's rather useful for debugging e.g. CI.
This commit is contained in:
parent
53342c6bcf
commit
c631e33f31
|
@ -198,6 +198,7 @@ set(LIBCXXABI_TEST_CONFIG "${CMAKE_CURRENT_SOURCE_DIR}/test/lit.site.cfg.in" CAC
|
|||
if (NOT IS_ABSOLUTE "${LIBCXXABI_TEST_CONFIG}")
|
||||
set(LIBCXXABI_TEST_CONFIG "${CMAKE_CURRENT_SOURCE_DIR}/test/configs/${LIBCXXABI_TEST_CONFIG}")
|
||||
endif()
|
||||
message(STATUS "Using libc++abi testing configuration: ${LIBCXXABI_TEST_CONFIG}")
|
||||
set(LIBCXXABI_TEST_PARAMS "" CACHE STRING
|
||||
"A list of parameters to run the Lit test suite with.")
|
||||
|
||||
|
|
|
@ -118,6 +118,7 @@ set(LIBUNWIND_TEST_CONFIG "${LIBUNWIND_DEFAULT_TEST_CONFIG}" CACHE STRING
|
|||
if (NOT IS_ABSOLUTE "${LIBUNWIND_TEST_CONFIG}")
|
||||
set(LIBUNWIND_TEST_CONFIG "${CMAKE_CURRENT_SOURCE_DIR}/test/configs/${LIBUNWIND_TEST_CONFIG}")
|
||||
endif()
|
||||
message(STATUS "Using libunwind testing configuration: ${LIBUNWIND_TEST_CONFIG}")
|
||||
set(LIBUNWIND_TEST_PARAMS "" CACHE STRING
|
||||
"A list of parameters to run the Lit test suite with.")
|
||||
|
||||
|
|
Loading…
Reference in New Issue