From: Chris Bieneman Date: Tue, 28 Jun 2016 18:32:22 +0000 (+0000) Subject: [CMake] Connect check-compiler-rt to check-all X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c982075071e9130f5312885c05fe1f9b3c5233d5;p=clang [CMake] Connect check-compiler-rt to check-all When using the LLVM_BUILD_EXTERNAL_COMPILER_RT option with LLVM_ENABLE_TESTS we should also bind check-compiler-rt to check-all so that the compiler-rt tests run too. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@274045 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 1c745ee223..2f8056efcd 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -141,6 +141,7 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/) COMMAND ${run_check_compiler_rt} DEPENDS compiler-rt-build ${COMPILER_RT_TEST_DEPENDENCIES} WORKING_DIRECTORY ${BINARY_DIR} - VERBATIM) + VERBATIM USES_TERMINAL) + set_property(GLOBAL APPEND PROPERTY LLVM_LIT_DEPENDS check-compiler-rt) endif() endif()