Temporarily disable check-sanitizer tests on 64-bit Windows.

llvm-svn: 241940
This commit is contained in:
Peter Collingbourne 2015-07-10 20:35:53 +00:00
parent e825d8b736
commit 23efcc8ed7
1 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,9 @@ if(COMPILER_RT_INCLUDE_TESTS)
list(APPEND SANITIZER_COMMON_TEST_DEPS SanitizerUnitTests)
endif()
if(SANITIZER_COMMON_TESTSUITES)
# FIXME: Re-enable on 64-bit Windows.
if(SANITIZER_COMMON_TESTSUITES AND
(NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 4))
add_lit_testsuite(check-sanitizer "Running sanitizer_common tests"
${SANITIZER_COMMON_TESTSUITES}
DEPENDS ${SANITIZER_COMMON_TEST_DEPS})