[PATCH] D60120: check-clang-tools: Actually build and run XPC test
Phabricator via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 4 13:10:07 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rCTE357719: check-clang-tools: Actually build and run XPC test (authored by nico, committed by ).
Herald added a project: clang.
Changed prior to commit:
https://reviews.llvm.org/D60120?vs=193256&id=193770#toc
Repository:
rCTE Clang Tools Extra
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60120/new/
https://reviews.llvm.org/D60120
Files:
test/CMakeLists.txt
test/lit.site.cfg.py.in
Index: test/lit.site.cfg.py.in
===================================================================
--- test/lit.site.cfg.py.in
+++ test/lit.site.cfg.py.in
@@ -11,7 +11,7 @@
config.python_executable = "@PYTHON_EXECUTABLE@"
config.target_triple = "@TARGET_TRIPLE@"
config.clang_staticanalyzer = @CLANG_ENABLE_STATIC_ANALYZER@
-config.clangd_xpc_support = @CLANGD_BUILD_XPC_SUPPORT@
+config.clangd_xpc_support = @CLANGD_BUILD_XPC@
# Support substitution of the tools and libs dirs with user parameters. This is
# used when we can't determine the tool dir at configuration time.
Index: test/CMakeLists.txt
===================================================================
--- test/CMakeLists.txt
+++ test/CMakeLists.txt
@@ -17,7 +17,7 @@
llvm_canonicalize_cmake_booleans(
CLANG_ENABLE_STATIC_ANALYZER
- CLANGD_BUILD_XPC_SUPPORT)
+ CLANGD_BUILD_XPC)
configure_lit_site_cfg(
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
@@ -70,7 +70,7 @@
clang
)
-if(CLANGD_BUILD_XPC_SUPPORT)
+if(CLANGD_BUILD_XPC)
list(APPEND CLANG_TOOLS_TEST_DEPS clangd-xpc-test-client)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60120.193770.patch
Type: text/x-patch
Size: 1095 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190404/fc9a9c74/attachment-0001.bin>
More information about the cfe-commits
mailing list