[PATCH] D55939: [CMake] Print out the list of sanitizers that the sanitizer_common tests will run against.
Dan Liew via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 21 04:00:51 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL349897: [CMake] Print out the list of sanitizers that the sanitizer_common tests will… (authored by delcypher, committed by ).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55939/new/
https://reviews.llvm.org/D55939
Files:
compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt
Index: compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt
+++ compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt
@@ -16,6 +16,13 @@
list(APPEND SUPPORTED_TOOLS lsan)
endif()
+# FIXME(dliew): Remove this.
+# Temporary helper for https://reviews.llvm.org/D55740
+message(
+ STATUS
+ "sanitizer_common tests on \"${CMAKE_SYSTEM_NAME}\" will run against "
+ "\"${SUPPORTED_TOOLS}\"")
+
# Create a separate config for each tool we support.
foreach(tool ${SUPPORTED_TOOLS})
string(TOUPPER ${tool} tool_toupper)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55939.179265.patch
Type: text/x-patch
Size: 654 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181221/c7829c69/attachment.bin>
More information about the llvm-commits
mailing list