summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2017-12-15 01:39:52 +0000
committerKostya Serebryany <kcc@google.com>2017-12-15 01:39:52 +0000
commitaa1acfa32974066bc8fbc5ffba88cdd9c591fbe4 (patch)
tree4a62f2dd4e6579c59a53d29c9c4817ae51a98ea8
parente202bd43ff2e7d87641984ac165a2a52d1c6b6d3 (diff)
[libFuzzer] make the tests depend on ubsan
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@320787 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/fuzzer/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzer/CMakeLists.txt b/test/fuzzer/CMakeLists.txt
index cf83c00b6..bd5111232 100644
--- a/test/fuzzer/CMakeLists.txt
+++ b/test/fuzzer/CMakeLists.txt
@@ -1,7 +1,7 @@
set(LIBFUZZER_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
list(REMOVE_ITEM LIBFUZZER_TEST_DEPS SanitizerLintCheck)
if (NOT COMPILER_RT_STANDALONE_BUILD)
- list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan)
+ list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan ubsan)
endif()
if(COMPILER_RT_INCLUDE_TESTS)