[compiler-rt] r241940 - Temporarily disable check-sanitizer tests on 64-bit Windows.

Peter Collingbourne peter at pcc.me.uk
Fri Jul 10 13:35:53 PDT 2015


Author: pcc
Date: Fri Jul 10 15:35:53 2015
New Revision: 241940

URL: http://llvm.org/viewvc/llvm-project?rev=241940&view=rev
Log:
Temporarily disable check-sanitizer tests on 64-bit Windows.

Modified:
    compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt

Modified: compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt?rev=241940&r1=241939&r2=241940&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt (original)
+++ compiler-rt/trunk/test/sanitizer_common/CMakeLists.txt Fri Jul 10 15:35:53 2015
@@ -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})





More information about the llvm-commits mailing list