1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00
llvm-mirror/tools/llvm-yaml-parser-fuzzer/CMakeLists.txt
Scott Linder 4173cf968c [YAMLIO] Add a generic YAML fuzzer harness
This is essentially a clone of the existing fuzzer added in D50839, but
for the whole parser Streamer, and currently only testing for sanitizer
violations.

Differential Revision: https://reviews.llvm.org/D91573
2020-11-18 23:06:03 +00:00

10 lines
159 B
CMake

set(LLVM_LINK_COMPONENTS
Support
FuzzMutate
)
add_llvm_fuzzer(llvm-yaml-parser-fuzzer
yaml-parser-fuzzer.cpp
DUMMY_MAIN DummyYAMLParserFuzzer.cpp
)