[PATCH] D21017: [asan] Reenable ASan tests in "check-all"

Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 6 09:31:24 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL271905: [asan] Reenable ASan tests in "check-all" (authored by kuba.brecka).

Changed prior to commit:
  http://reviews.llvm.org/D21017?vs=59705&id=59738#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D21017

Files:
  compiler-rt/trunk/test/asan/CMakeLists.txt

Index: compiler-rt/trunk/test/asan/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/test/asan/CMakeLists.txt
+++ compiler-rt/trunk/test/asan/CMakeLists.txt
@@ -5,7 +5,7 @@
 
 # TODO(wwchrome): Re-enable Win64 asan tests when ready.
 # Disable tests for asan Win64 temporarily.
-if(NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 8)
+if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8)
   set(EXCLUDE_FROM_ALL TRUE)
 endif()
 
@@ -124,6 +124,6 @@
 endif()
 
 # TODO(wwchrome): Re-enable the tests for asan Win64 when ready.
-if(NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 8)
+if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8)
   set(EXCLUDE_FROM_ALL FALSE)
 endif()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21017.59738.patch
Type: text/x-patch
Size: 769 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160606/a0304cef/attachment.bin>


More information about the llvm-commits mailing list