summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJosh Steadmon <steadmon@google.com>2019-01-15 22:25:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-01-16 04:31:49 (GMT)
commitaa658574bfcbe03f5703458ac10be1ef3f5f5472 (patch)
treeb8841623f51f1013b9207a53b199f3f0b557b56b /Makefile
parent77556354bb7ac50450e3b28999e3576969869068 (diff)
downloadgit-aa658574bfcbe03f5703458ac10be1ef3f5f5472.zip
git-aa658574bfcbe03f5703458ac10be1ef3f5f5472.tar.gz
git-aa658574bfcbe03f5703458ac10be1ef3f5f5472.tar.bz2
commit-graph, fuzz: add fuzzer for commit-graph
Break load_commit_graph_one() into a new function, parse_commit_graph(). The latter function operates on arbitrary buffers, which makes it suitable as a fuzzing target. Since parse_commit_graph() is only called by load_commit_graph_one() (and the fuzzer described below), we omit error messages that would be duplicated by the caller. Adds fuzz-commit-graph.c, which provides a fuzzing entry point compatible with libFuzzer (and possibly other fuzzing engines). Signed-off-by: Josh Steadmon <steadmon@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1a44c81..6b72f37 100644
--- a/Makefile
+++ b/Makefile
@@ -684,6 +684,7 @@ SCRIPTS = $(SCRIPT_SH_INS) \
ETAGS_TARGET = TAGS
+FUZZ_OBJS += fuzz-commit-graph.o
FUZZ_OBJS += fuzz-pack-headers.o
FUZZ_OBJS += fuzz-pack-idx.o