From: Nico Weber Date: Wed, 1 May 2019 23:32:38 +0000 (+0000) Subject: Revert r359717, "Make check-clang depend on the clang-check binary always" X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1e9fc11aabd9b342d59b9449936426731e0d023;p=clang Revert r359717, "Make check-clang depend on the clang-check binary always" The Tooling tests do have a lit.local.cfg with if not config.root.clang_staticanalyzer: config.unsupported = True so what's wrong isn't the missing dep, but that lit prints a warning for the binary missing. This will need a different kind of fix. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@359739 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index facddbd0a1..65a1d6e91f 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -49,7 +49,6 @@ list(APPEND CLANG_TEST_DEPS c-index-test clang clang-resource-headers - clang-check clang-format clang-tblgen clang-offload-bundler @@ -63,6 +62,7 @@ list(APPEND CLANG_TEST_DEPS if(CLANG_ENABLE_STATIC_ANALYZER) list(APPEND CLANG_TEST_DEPS + clang-check clang-extdef-mapping ) endif()