summaryrefslogtreecommitdiff
path: root/tests/fuzz/block.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* Merge pull request #6512Alexander Blair2020-07-191-1/+1
|\ | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | | | | | Update copyright year to 2020
* | fuzz_tests: refactor and add OSS-Fuzz compatibilitymoneromooo-monero2020-05-151-31/+5
|/
* Update 2019 copyrightbinaryFate2019-03-051-1/+1
|
* Catch more exceptions in dtorsmoneromooo-monero2018-10-021-0/+2
| | | | Misc coverity reports
* Readd copyright starting datexmr-eric2018-01-261-1/+1
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* move includes around to lessen overall loadmoneromooo-monero2017-12-161-1/+1
|
* move cryptonote command line options to cryptonote_coremoneromooo-monero2017-11-141-1/+0
| | | | Those have no reason to be in a generic module
* Add fuzz testing using american fuzzy lopmoneromooo-monero2017-06-241-0/+67
Existing tests: block, transaction, signature, cold outputs, cold transaction. Data for these is in tests/data/fuzz. A convenience shell script is in contrib/fuzz_testing/fuzz.sh, eg: contrib/fuzz_testing/fuzz.sh signature The fuzzer will run indefinitely, ^C to stop. Fuzzing is currently supported for GCC only. I can't get CLANG to build Monero here as it dies on some system headers, so if someone wants to make it work on both, that'd be great. In particular, the __AFL_LOOP construct should be made to work so that a given run can fuzz multiple inputs, as the C++ load time is substantial.