mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-11 10:26:44 +00:00
4eb60cb9c9
Summary: All easy-to-find bugs in cxa_demangle where fixed now (https://bugs.chromium.org/p/chromium/issues/detail?id=606626) except for one (https://llvm.org/bugs/show_bug.cgi?id=31031). Now I'd like to properly integrate this fuzzer with the source tree and then run the fuzzer continuously on https://github.com/google/oss-fuzz Reviewers: compnerd, mclow.lists, mehdi_amini Subscribers: cfe-commits, mgorny Differential Revision: https://reviews.llvm.org/D28133 llvm-svn: 290650
12 lines
248 B
CMake
12 lines
248 B
CMake
# See http://llvm.org/docs/LibFuzzer.html
|
|
if( LLVM_USE_SANITIZE_COVERAGE )
|
|
add_executable(cxa_demangle_fuzzer
|
|
cxa_demangle_fuzzer.cpp
|
|
../src/cxa_demangle.cpp
|
|
)
|
|
|
|
target_link_libraries(cxa_demangle_fuzzer
|
|
LLVMFuzzer
|
|
)
|
|
endif()
|