aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz
Commit message (Collapse)AuthorAgeFilesLines
...
* | tests: add levin fuzz testmoneromooo-monero2017-12-232-0/+359
| |
* | tests: add http client fuzz testmoneromooo-monero2017-12-232-0/+112
| |
* | add parse_url fuzz testmoneromooo-monero2017-12-232-0/+87
| |
* | tests: add base58 fuzz testmoneromooo-monero2017-12-232-0/+86
| |
* | tests: don't init stuff we don't need in fuzz tests - fastermoneromooo-monero2017-12-231-32/+1
| |
* | add load_from_binary/load_from_json fuzzersmoneromooo-monero2017-12-233-0/+176
|/
* move includes around to lessen overall loadmoneromooo-monero2017-12-166-5/+6
|
* move cryptonote command line options to cryptonote_coremoneromooo-monero2017-11-144-4/+0
| | | | Those have no reason to be in a generic module
* Initialize openssl on startupmoneromooo-monero2017-10-211-0/+2
|
* Subaddresseskenshi842017-10-071-3/+2
|
* Revert "Cleanup test impact of moving blockchain_db_types()"Howard Chu2017-08-291-10/+0
| | | | This reverts commit 3dd34a49efd2954b0a5eb020abd168d9379b98c4.
* Cleanup test impact of moving blockchain_db_types()Howard Chu2017-08-221-0/+10
|
* Add fuzz testing using american fuzzy lopmoneromooo-monero2017-06-248-0/+682
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.