r314036 - [test] Enable clang-func-mapping as a test dep with the analyzer

Vedant Kumar via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 22 15:17:10 PDT 2017


Author: vedantk
Date: Fri Sep 22 15:17:10 2017
New Revision: 314036

URL: http://llvm.org/viewvc/llvm-project?rev=314036&view=rev
Log:
[test] Enable clang-func-mapping as a test dep with the analyzer

clang-func-mapping should not be a test dependency when the static
analyzer isn't being built.

Modified:
    cfe/trunk/test/CMakeLists.txt

Modified: cfe/trunk/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CMakeLists.txt?rev=314036&r1=314035&r2=314036&view=diff
==============================================================================
--- cfe/trunk/test/CMakeLists.txt (original)
+++ cfe/trunk/test/CMakeLists.txt Fri Sep 22 15:17:10 2017
@@ -54,12 +54,12 @@ list(APPEND CLANG_TEST_DEPS
   clang-rename
   clang-refactor
   clang-diff
-  clang-func-mapping
   )
   
 if(CLANG_ENABLE_STATIC_ANALYZER)
   list(APPEND CLANG_TEST_DEPS
     clang-check
+    clang-func-mapping
     )
 endif()
 




More information about the cfe-commits mailing list