mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 13:55:17 +00:00
Fixes the tendermint OSS-Fuzz build by adjusting for some infra changes that were made in OSS-Fuzz.
---
#### PR checklist
- [ ] Tests written/updated, or no tests needed
- [ ] `CHANGELOG_PENDING.md` updated, or no changelog entry needed
- [ ] Updated relevant documentation (`docs/`) and code comments, or no
documentation updates needed
24 lines
805 B
Bash
Executable File
24 lines
805 B
Bash
Executable File
#!/bin/bash
|
|
# This script is invoked by OSS-Fuzz to run fuzz tests against Tendermint core.
|
|
# See https://github.com/google/oss-fuzz/blob/master/projects/tendermint/build.sh
|
|
set -euo pipefail
|
|
|
|
export FUZZ_ROOT="github.com/tendermint/tendermint"
|
|
|
|
build_go_fuzzer() {
|
|
local function="$1"
|
|
local fuzzer="$2"
|
|
|
|
go run github.com/orijtech/otils/corpus2ossfuzz@latest -o "$OUT"/"$fuzzer"_seed_corpus.zip -corpus test/fuzz/tests/testdata/fuzz/"$function"
|
|
compile_native_go_fuzzer "$FUZZ_ROOT"/test/fuzz/tests "$function" "$fuzzer"
|
|
}
|
|
|
|
go get github.com/AdamKorcz/go-118-fuzz-build/testing
|
|
go get github.com/prometheus/common/expfmt@v0.32.1
|
|
|
|
build_go_fuzzer FuzzP2PSecretConnection fuzz_p2p_secretconnection
|
|
|
|
build_go_fuzzer FuzzMempool fuzz_mempool
|
|
|
|
build_go_fuzzer FuzzRPCJSONRPCServer fuzz_rpc_jsonrpc_server
|