You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
670 B

  1. #!/bin/bash -eu
  2. export FUZZ_ROOT="github.com/tendermint/tendermint"
  3. (cd test/fuzz/p2p/addrbook; go run ./init-corpus/main.go)
  4. compile_go_fuzzer "$FUZZ_ROOT"/test/fuzz/p2p/addrbook Fuzz fuzz_p2p_addrbook fuzz
  5. (cd test/fuzz/p2p/pex; go run ./init-corpus/main.go)
  6. compile_go_fuzzer "$FUZZ_ROOT"/test/fuzz/p2p/pex Fuzz fuzz_p2p_pex fuzz
  7. (cd test/fuzz/p2p/secret_connection; go run ./init-corpus/main.go)
  8. compile_go_fuzzer "$FUZZ_ROOT"/test/fuzz/p2p/secret_connection Fuzz fuzz_p2p_secret_connection fuzz
  9. compile_go_fuzzer "$FUZZ_ROOT"/test/fuzz/mempool Fuzz fuzz_mempool fuzz
  10. compile_go_fuzzer "$FUZZ_ROOT"/test/fuzz/rpc/jsonrpc/server Fuzz fuzz_rpc_jsonrpc_server fuzz