From 474e70aeb725101d6d0d4bf4d75b199fd1ba465a Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Thu, 5 Jun 2014 12:31:22 +0000 Subject: [PATCH] [asan] Add 'asan' to asan test deps. This sound like a good idea in general. Also, without this on Android we get add_lit_testsuite() with empty DEPENDS list, and it does not work well. llvm-svn: 210257 --- compiler-rt/test/asan/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/asan/CMakeLists.txt b/compiler-rt/test/asan/CMakeLists.txt index 2b56996..2454c415 100644 --- a/compiler-rt/test/asan/CMakeLists.txt +++ b/compiler-rt/test/asan/CMakeLists.txt @@ -96,7 +96,7 @@ if(COMPILER_RT_INCLUDE_TESTS) ${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg) endif() -set(ASAN_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS}) +set(ASAN_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS} asan) if(NOT COMPILER_RT_STANDALONE_BUILD) list(APPEND ASAN_TEST_DEPS asan) endif() -- 2.7.4