aboutsummaryrefslogtreecommitdiffstats
path: root/ci/run-build-and-minimal-fuzzers.sh
blob: 8ba486f6598880f0aeb69c1a36f410d08de8892d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# Build and test Git's fuzzers
#

. ${0%/*}/lib.sh

group "Build fuzzers" make \
	CC=clang \
	CXX=clang++ \
	CFLAGS="-fsanitize=fuzzer-no-link,address" \
	LIB_FUZZING_ENGINE="-fsanitize=fuzzer,address" \
	fuzz-all

for fuzzer in commit-graph date pack-headers pack-idx ; do
	begin_group "fuzz-$fuzzer"
	./oss-fuzz/fuzz-$fuzzer -verbosity=0 -runs=1 || exit 1
	end_group "fuzz-$fuzzer"
done