Skip to content

Commit 88fe16c

Browse files
committed
[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
1 parent 2d94c22 commit 88fe16c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

compiler-rt/test/sanitizer_common/CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ if(CMAKE_SYSTEM_NAME MATCHES "Linux" AND NOT ANDROID)
1616
list(APPEND SUPPORTED_TOOLS lsan)
1717
endif()
1818

19+
# FIXME(dliew): Remove this.
20+
# Temporary helper for https://reviews.llvm.org/D55740
21+
message(
22+
STATUS
23+
"sanitizer_common tests on \"${CMAKE_SYSTEM_NAME}\" will run against "
24+
"\"${SUPPORTED_TOOLS}\"")
25+
1926
# Create a separate config for each tool we support.
2027
foreach(tool ${SUPPORTED_TOOLS})
2128
string(TOUPPER ${tool} tool_toupper)

0 commit comments

Comments
 (0)