Skip to content

Commit

Permalink
[asan] Reenable ASan tests in "check-all"
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kubamracek committed Jun 6, 2016
1 parent 027c469 commit 2e26d9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler-rt/test/asan/CMakeLists.txt
Expand Up @@ -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()

Expand Down Expand Up @@ -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()

0 comments on commit 2e26d9f

Please sign in to comment.