diff options
author | Vitaly Buka <vitalybuka@google.com> | 2017-09-11 19:41:17 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2017-09-11 19:41:17 +0000 |
commit | 87d1f9ce935f2b2c39bf2d543755a5702f7cdbcc (patch) | |
tree | 4df30d7ed25593eb2eba4c894d9891823b64f4aa | |
parent | 537bd3b906f9f3126ddef03bbcdcdb756edac4f9 (diff) | |
download | bcm5719-llvm-87d1f9ce935f2b2c39bf2d543755a5702f7cdbcc.tar.gz bcm5719-llvm-87d1f9ce935f2b2c39bf2d543755a5702f7cdbcc.zip |
[asan] Include asan-dynamic into check-all
Summary: It's adds just 1k to about 45k tests.
Reviewers: eugenis, alekseyshl
Subscribers: kubamracek, mgorny, llvm-commits
Differential Revision: https://reviews.llvm.org/D37666
llvm-svn: 312937
-rw-r--r-- | compiler-rt/test/asan/CMakeLists.txt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/compiler-rt/test/asan/CMakeLists.txt b/compiler-rt/test/asan/CMakeLists.txt index 19d9c88cf52..bd6834d7433 100644 --- a/compiler-rt/test/asan/CMakeLists.txt +++ b/compiler-rt/test/asan/CMakeLists.txt @@ -164,21 +164,12 @@ add_lit_testsuite(check-asan "Running the AddressSanitizer tests" 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. |