summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Morehouse <mascasa@google.com>2018-07-16 17:37:15 +0000
committerMatt Morehouse <mascasa@google.com>2018-07-16 17:37:15 +0000
commitbb7bcc79811d249e5573f35ae39f65aff927dcea (patch)
treeb737dc4a300c0e1a846be4b5377be91d225c5c53
parent45febc9161404adb6326ae66f4e052a5512d57c2 (diff)
[libFuzzer] Add msan and dfsan to test deps.
Required now that we have tests using MSan and DFSan. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@337193 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 38970749d..4cec80774 100644
--- a/test/fuzzer/CMakeLists.txt
+++ b/test/fuzzer/CMakeLists.txt
@@ -1,6 +1,6 @@
set(LIBFUZZER_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
if (NOT COMPILER_RT_STANDALONE_BUILD)
- list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan ubsan)
+ list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan msan ubsan dfsan)
if(NOT APPLE AND COMPILER_RT_HAS_LLD)
list(APPEND LIBFUZZER_TEST_DEPS lld)
endif()