[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
Thu Dec 20 09:42:15 PST 2018


delcypher created this revision.
delcypher added reviewers: vitalybuka, kubamracek.
Herald added subscribers: Sanitizers, mgorny.

This is a change requested by Vitaly Buka as prerequisite to landing
https://reviews.llvm.org/D55740.


Repository:
  rCRT Compiler Runtime

https://reviews.llvm.org/D55939

Files:
  test/sanitizer_common/CMakeLists.txt


Index: test/sanitizer_common/CMakeLists.txt
===================================================================
--- test/sanitizer_common/CMakeLists.txt
+++ 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.179092.patch
Type: text/x-patch
Size: 600 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181220/d7530678/attachment.bin>


More information about the llvm-commits mailing list