Skip to content

Commit 87d1f9c

Browse files
committedSep 11, 2017
[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
1 parent 537bd3b commit 87d1f9c

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed
 

‎compiler-rt/test/asan/CMakeLists.txt

-9
Original file line numberDiff line numberDiff line change
@@ -164,21 +164,12 @@ add_lit_testsuite(check-asan "Running the AddressSanitizer tests"
164164
set_target_properties(check-asan PROPERTIES FOLDER "Compiler-RT Misc")
165165

166166
if(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME)
167-
# Add check-dynamic-asan target. It is a part of check-all only on Windows,
168-
# where we want to always test both dynamic and static runtime.
169-
170-
if(NOT OS_NAME MATCHES "Windows")
171-
set(EXCLUDE_FROM_ALL TRUE)
172-
endif()
173167
add_lit_testsuite(check-asan-dynamic
174168
"Running the AddressSanitizer tests with dynamic runtime"
175169
${ASAN_DYNAMIC_TESTSUITES}
176170
DEPENDS ${ASAN_DYNAMIC_TEST_DEPS})
177171
set_target_properties(check-asan-dynamic
178172
PROPERTIES FOLDER "Compiler-RT Misc")
179-
if(NOT OS_NAME MATCHES "Windows")
180-
set(EXCLUDE_FROM_ALL FALSE)
181-
endif()
182173
endif()
183174

184175
# Reset EXCLUDE_FROM_ALL to its initial value.

0 commit comments

Comments
 (0)
Please sign in to comment.