mirror of
https://github.com/monero-project/monero.git
synced 2025-10-11 13:48:30 -04:00
add load_from_binary/load_from_json fuzzers
This commit is contained in:
parent
7a9a4a6669
commit
95aa0bf79b
6 changed files with 180 additions and 3 deletions
|
@ -89,3 +89,27 @@ set_property(TARGET cold-transaction_fuzz_tests
|
|||
PROPERTY
|
||||
FOLDER "tests")
|
||||
|
||||
add_executable(load-from-binary_fuzz_tests load_from_binary.cpp fuzzer.cpp)
|
||||
target_link_libraries(load-from-binary_fuzz_tests
|
||||
PRIVATE
|
||||
common
|
||||
epee
|
||||
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
||||
${CMAKE_THREAD_LIBS_INIT}
|
||||
${EXTRA_LIBRARIES})
|
||||
set_property(TARGET load-from-binary_fuzz_tests
|
||||
PROPERTY
|
||||
FOLDER "tests")
|
||||
|
||||
add_executable(load-from-json_fuzz_tests load_from_json.cpp fuzzer.cpp)
|
||||
target_link_libraries(load-from-json_fuzz_tests
|
||||
PRIVATE
|
||||
common
|
||||
epee
|
||||
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
||||
${CMAKE_THREAD_LIBS_INIT}
|
||||
${EXTRA_LIBRARIES})
|
||||
set_property(TARGET load-from-json_fuzz_tests
|
||||
PROPERTY
|
||||
FOLDER "tests")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue