Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(95)

Unified Diff: lib/asan/tests/CMakeLists.txt

Issue 6454079: [ASan] Add support for running unit tests by lit (as a part of 'make check-asan' command) (Closed) Base URL: https://llvm.org/svn/llvm-project/compiler-rt/trunk/
Patch Set: z Created 12 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/asan/tests/CMakeLists.txt
===================================================================
--- lib/asan/tests/CMakeLists.txt (revision 161109)
+++ lib/asan/tests/CMakeLists.txt (working copy)
@@ -47,10 +47,10 @@
-DASAN_UAR=0
)
-add_custom_target(AsanTests)
-set_target_properties(AsanTests PROPERTIES FOLDER "ASan tests")
+add_custom_target(AsanUnitTests)
+set_target_properties(AsanUnitTests PROPERTIES FOLDER "ASan unit tests")
function(add_asan_test testname)
- add_unittest(AsanTests ${testname} ${ARGN})
+ add_unittest(AsanUnitTests ${testname} ${ARGN})
if(LLVM_BUILD_32_BITS)
target_link_libraries(${testname} clang_rt.asan-i386)
else()

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b