[PATCH] D41214: [cmake] Fix typo in test/asan/CMakeLists.txt
Azharuddin Mohammed via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 13 17:37:20 PST 2017
azharudd created this revision.
azharudd added reviewers: samsonov, rnk.
Herald added subscribers: mgorny, kubamracek.
Should be variable name instead of variable reference.
Repository:
rL LLVM
https://reviews.llvm.org/D41214
Files:
test/asan/CMakeLists.txt
Index: test/asan/CMakeLists.txt
===================================================================
--- test/asan/CMakeLists.txt
+++ test/asan/CMakeLists.txt
@@ -8,7 +8,7 @@
# unreliable. Remove the asan tests from check-all in this configuration.
set(SHADOW_MAPPING_UNRELIABLE FALSE)
if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8 AND
- ${CMAKE_SYSTEM_VERSION} LESS 6.2)
+ CMAKE_SYSTEM_VERSION LESS 6.2)
set(SHADOW_MAPPING_UNRELIABLE TRUE)
message(WARNING "Disabling ASan tests because they are unreliable on Windows 7 and earlier")
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D41214.126878.patch
Type: text/x-patch
Size: 572 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171214/8d48432f/attachment.bin>
More information about the llvm-commits
mailing list