tests: add http client fuzz test

This commit is contained in:
moneromooo-monero 2017-12-11 09:33:01 +00:00
parent 0272df9e61
commit f1bdc9a42a
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
5 changed files with 137 additions and 6 deletions

View file

@ -138,3 +138,17 @@ set_property(TARGET parse-url_fuzz_tests
PROPERTY
FOLDER "tests")
add_executable(http-client_fuzz_tests http-client.cpp fuzzer.cpp)
target_link_libraries(http-client_fuzz_tests
PRIVATE
epee
${Boost_THREAD_LIBRARY}
${Boost_REGEX_LIBRARY}
${Boost_PROGRAM_OPTIONS_LIBRARY}
${Boost_SYSTEM_LIBRARY}
${CMAKE_THREAD_LIBS_INIT}
${EXTRA_LIBRARIES})
set_property(TARGET http-client_fuzz_tests
PROPERTY
FOLDER "tests")