[PATCH] D24742: [compiler-rt][asan] Turn on ASAN unittests for win64.

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 19 12:41:54 PDT 2016


etienneb created this revision.
etienneb added a reviewer: rnk.
etienneb added subscribers: chrisha, llvm-commits.
Herald added subscribers: mgorny, beanz, dberris, kubabrecka.

Asan is now working on windows 64-bit.
This patch is turning on the unittest.

https://reviews.llvm.org/D24742

Files:
  test/asan/CMakeLists.txt

Index: test/asan/CMakeLists.txt
===================================================================
--- test/asan/CMakeLists.txt
+++ test/asan/CMakeLists.txt
@@ -3,12 +3,6 @@
 set(ASAN_TESTSUITES)
 set(ASAN_DYNAMIC_TESTSUITES)
 
-# TODO(wwchrome): Re-enable Win64 asan tests when ready.
-# Disable tests for asan Win64 temporarily.
-if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8)
-  set(EXCLUDE_FROM_ALL TRUE)
-endif()
-
 macro(get_bits_for_arch arch bits)
   if (${arch} MATCHES "i386|i686|arm|mips|mipsel")
     set(${bits} 32)
@@ -122,8 +116,3 @@
     set(EXCLUDE_FROM_ALL FALSE)
   endif()
 endif()
-
-# TODO(wwchrome): Re-enable the tests for asan Win64 when ready.
-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: D24742.71868.patch
Type: text/x-patch
Size: 789 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160919/c8bd9187/attachment.bin>


More information about the llvm-commits mailing list