forked from OSchip/llvm-project
[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
This commit is contained in:
parent
027c469158
commit
2e26d9faac
|
@ -5,7 +5,7 @@ set(ASAN_DYNAMIC_TESTSUITES)
|
|||
|
||||
# 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 @@ if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
|
|||
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()
|
||||
|
|
Loading…
Reference in New Issue