Files
pezkuwi-subxt/polkadot/bridges/fuzz/storage-proof
dependabot[bot] d511c207f4 Bump thread_local from 1.1.0 to 1.1.4 in /bridges/fuzz/storage-proof (#5687)
Bumps [thread_local](https://github.com/Amanieu/thread_local-rs) from 1.1.0 to 1.1.4.
- [Release notes](https://github.com/Amanieu/thread_local-rs/releases)
- [Commits](https://github.com/Amanieu/thread_local-rs/compare/v1.1.0...1.1.4)

---
updated-dependencies:
- dependency-name: thread_local
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-23 08:08:58 +00:00
..
2022-03-21 10:19:29 +00:00
2022-03-21 10:19:29 +00:00

Storage Proof Fuzzer

How to run?

Install dependencies:

$ sudo apt install build-essential binutils-dev libunwind-dev

or on nix:

$ nix-shell -p honggfuzz

Install cargo hfuzz plugin:

$ cargo install honggfuzz

Run:

$ cargo hfuzz run storage-proof-fuzzer

Use HFUZZ_RUN_ARGS to customize execution:

# 1 second of timeout
# use 12 fuzzing thread
# be verbose
# stop after 1000000 fuzzing iteration
# exit upon crash
HFUZZ_RUN_ARGS="-t 1 -n 12 -v -N 1000000 --exit_upon_crash" cargo hfuzz run example

More details in the official documentation.