On 2024.10.10 14:11, Josh Steadmon wrote: > diff --git a/ci/run-build-and-minimal-fuzzers.sh b/ci/run-build-and-minimal-fuzzers.sh > index af8065f349..d9d3ad23c7 100755 > --- a/ci/run-build-and-minimal-fuzzers.sh > +++ b/ci/run-build-and-minimal-fuzzers.sh > @@ -13,8 +13,17 @@ group "Build fuzzers" make \ > LIB_FUZZING_ENGINE="-fsanitize=fuzzer,address" \ > fuzz-all > > -for fuzzer in commit-graph config date pack-headers pack-idx ; do > +fuzzers=" > +commit-graph \ > +config \ > +credential-from-url-gently \ > +date \ > +pack-headers \ > +pack-idx \ > +" > + > +for fuzzer in $fuzzers ; do > begin_group "fuzz-$fuzzer" > - ./oss-fuzz/fuzz-$fuzzer -verbosity=0 -runs=1 || exit 1 > + echo ./oss-fuzz/fuzz-$fuzzer -verbosity=0 -runs=1 || exit 1 > end_group "fuzz-$fuzzer" > done I'm not sure how this "echo" got into the diff here, but I've removed it in V2.