Skip to content

Commit 2e26d9f

Browse files
committedJun 6, 2016
[asan] Reenable ASan tests in "check-all"
Somehow, in r271049, ASan lit tests and unit tests were removed from “check-all”. Doesn’t seem intentional, let’s fix it. Differential Revision: http://reviews.llvm.org/D21017 llvm-svn: 271905
1 parent 027c469 commit 2e26d9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎compiler-rt/test/asan/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(ASAN_DYNAMIC_TESTSUITES)
55

66
# TODO(wwchrome): Re-enable Win64 asan tests when ready.
77
# Disable tests for asan Win64 temporarily.
8-
if(NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 8)
8+
if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8)
99
set(EXCLUDE_FROM_ALL TRUE)
1010
endif()
1111

@@ -124,6 +124,6 @@ if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
124124
endif()
125125

126126
# TODO(wwchrome): Re-enable the tests for asan Win64 when ready.
127-
if(NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 8)
127+
if(OS_NAME MATCHES "Windows" AND CMAKE_SIZEOF_VOID_P EQUAL 8)
128128
set(EXCLUDE_FROM_ALL FALSE)
129129
endif()

0 commit comments

Comments
 (0)
Please sign in to comment.