diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-06-05 12:31:22 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-06-05 12:31:22 +0000 |
commit | 474e70aeb725101d6d0d4bf4d75b199fd1ba465a (patch) | |
tree | 1efcd420da62f576c00c896e5b5c8dbada5bdb00 | |
parent | 785108b0fc218af08fe2b445935229fe4ad8dbae (diff) | |
download | bcm5719-llvm-474e70aeb725101d6d0d4bf4d75b199fd1ba465a.tar.gz bcm5719-llvm-474e70aeb725101d6d0d4bf4d75b199fd1ba465a.zip |
[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
-rw-r--r-- | compiler-rt/test/asan/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/CMakeLists.txt b/compiler-rt/test/asan/CMakeLists.txt index 2b5699617cb..2454c415e1b 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() |