aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/fuzzer.h
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: fix init check in oss-fuzz modemoneromooo-monero2020-06-141-1/+1
| |
* | fix leaks in fuzz testsmoneromooo-monero2020-06-141-2/+10
| |
* | fuzz_tests: refactor and add OSS-Fuzz compatibilitymoneromooo-monero2020-05-151-0/+100
|/
* Update 2019 copyrightbinaryFate2019-03-051-1/+1
|
* Readd copyright starting datexmr-eric2018-01-261-1/+1
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* Add fuzz testing using american fuzzy lopmoneromooo-monero2017-06-241-0/+38
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.