diff options
author | Dan Liew <dan@su-root.co.uk> | 2018-12-21 11:57:31 +0000 |
---|---|---|
committer | Dan Liew <dan@su-root.co.uk> | 2018-12-21 11:57:31 +0000 |
commit | 88fe16c56dfe0f6eac05fec9c77d35660b3eb33f (patch) | |
tree | 91342badfb6e2ddce931eb2dd66ece93acecceef | |
parent | 2d94c2265ebd3ed4cd964a3a2f21486b1b6463f8 (diff) | |
download | bcm5719-llvm-88fe16c56dfe0f6eac05fec9c77d35660b3eb33f.tar.gz bcm5719-llvm-88fe16c56dfe0f6eac05fec9c77d35660b3eb33f.zip |
[CMake] Print out the list of sanitizers that the sanitizer_common tests will run against.
Summary:
This is a change requested by Vitaly Buka as prerequisite to landing
https://reviews.llvm.org/D55740.
Reviewers: vitalybuka, kubamracek
Subscribers: mgorny, #sanitizers, llvm-commits
Differential Revision: https://reviews.llvm.org/D55939
llvm-svn: 349897
-rw-r--r-- | compiler-rt/test/sanitizer_common/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler-rt/test/sanitizer_common/CMakeLists.txt b/compiler-rt/test/sanitizer_common/CMakeLists.txt index 4e2c80390f7..23292e54820 100644 --- a/compiler-rt/test/sanitizer_common/CMakeLists.txt +++ b/compiler-rt/test/sanitizer_common/CMakeLists.txt @@ -16,6 +16,13 @@ if(CMAKE_SYSTEM_NAME MATCHES "Linux" AND NOT ANDROID) 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) |