[PATCH] D37666: [asan] Include asan-dynamic into check-all

Vitaly Buka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 11 12:42:48 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL312937: [asan] Include asan-dynamic into check-all (authored by vitalybuka).

Changed prior to commit:
  https://reviews.llvm.org/D37666?vs=114499&id=114653#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D37666

Files:
  compiler-rt/trunk/test/asan/CMakeLists.txt


Index: compiler-rt/trunk/test/asan/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/test/asan/CMakeLists.txt
+++ compiler-rt/trunk/test/asan/CMakeLists.txt
@@ -164,21 +164,12 @@
 set_target_properties(check-asan PROPERTIES FOLDER "Compiler-RT Misc")
 
 if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
-  # Add check-dynamic-asan target. It is a part of check-all only on Windows,
-  # where we want to always test both dynamic and static runtime.
-
-  if(NOT OS_NAME MATCHES "Windows")
-    set(EXCLUDE_FROM_ALL TRUE)
-  endif()
   add_lit_testsuite(check-asan-dynamic
                     "Running the AddressSanitizer tests with dynamic runtime"
                     ${ASAN_DYNAMIC_TESTSUITES}
                     DEPENDS ${ASAN_DYNAMIC_TEST_DEPS})
   set_target_properties(check-asan-dynamic
                         PROPERTIES FOLDER "Compiler-RT Misc")
-  if(NOT OS_NAME MATCHES "Windows")
-    set(EXCLUDE_FROM_ALL FALSE)
-  endif()
 endif()
 
 # Reset EXCLUDE_FROM_ALL to its initial value.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37666.114653.patch
Type: text/x-patch
Size: 1047 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170911/1ca4be10/attachment.bin>


More information about the llvm-commits mailing list