Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-01-26 | Update 2018 copyright | xmr-eric | 1 | -1/+1 | |
2017-12-23 | tests: add levin fuzz test | moneromooo-monero | 1 | -0/+14 | |
2017-12-23 | tests: add http client fuzz test | moneromooo-monero | 1 | -0/+14 | |
2017-12-23 | add parse_url fuzz test | moneromooo-monero | 1 | -0/+13 | |
2017-12-23 | tests: add base58 fuzz test | moneromooo-monero | 1 | -0/+12 | |
2017-12-23 | add load_from_binary/load_from_json fuzzers | moneromooo-monero | 1 | -0/+24 | |
2017-08-29 | Revert "Cleanup test impact of moving blockchain_db_types()" | Howard Chu | 1 | -10/+0 | |
This reverts commit 3dd34a49efd2954b0a5eb020abd168d9379b98c4. | |||||
2017-08-22 | Cleanup test impact of moving blockchain_db_types() | Howard Chu | 1 | -0/+10 | |
2017-06-24 | Add fuzz testing using american fuzzy lop | moneromooo-monero | 1 | -0/+91 | |
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. |