mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 11:45:18 +00:00
24 lines
803 B
Bash
Executable File
24 lines
803 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/utils
|
|
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
|