[compiler-rt] r320787 - [libFuzzer] make the tests depend on ubsan
Kostya Serebryany via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 14 17:39:53 PST 2017
Author: kcc
Date: Thu Dec 14 17:39:52 2017
New Revision: 320787
URL: http://llvm.org/viewvc/llvm-project?rev=320787&view=rev
Log:
[libFuzzer] make the tests depend on ubsan
Modified:
compiler-rt/trunk/test/fuzzer/CMakeLists.txt
Modified: compiler-rt/trunk/test/fuzzer/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/CMakeLists.txt?rev=320787&r1=320786&r2=320787&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/CMakeLists.txt (original)
+++ compiler-rt/trunk/test/fuzzer/CMakeLists.txt Thu Dec 14 17:39:52 2017
@@ -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)
More information about the llvm-commits
mailing list