From: Arthur Chan <arthur.chan@xxxxxxxxxxxxx> This patch is aimed to provide a better organisation for oss-fuzz fuzzers, allowing more fuzzers for the git project to be added in later development. A new direrctory oss-fuzz has been created and existing fuzzers are moved into the new directory. Makefile and .gitignore have been fixed accordingly. CC: Josh Steadmon <steadmon@xxxxxxxxxx> CC: David Korczynski <david@xxxxxxxxxxxxx> Signed-off-by: Arthur Chan <arthur.chan@xxxxxxxxxxxxx> --- fuzz: reorganise the path for existing oss-fuzz fuzzers This patch is aimed to provide a better organisation for oss-fuzz fuzzers, allowing more fuzzers for the git project to be added in later development. A new directory oss-fuzz has been created and existing fuzzers are moved into the new directory. Makefile and .gitignore have been fixed accordingly. Fix wrong push for v2 CC: Josh Steadmon steadmon@xxxxxxxxxx CC: David Korczynski david@xxxxxxxxxxxxx Signed-off-by: Arthur Chan arthur.chan@xxxxxxxxxxxxx Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1353%2Farthurscchan%2Frelocate-fuzzer-v3 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1353/arthurscchan/relocate-fuzzer-v3 Pull-Request: https://github.com/gitgitgadget/git/pull/1353 Range-diff vs v2: 1: c056429897a ! 1: 21714e583aa fuzz: reorganise the path for existing oss-fuzz fuzzers @@ Commit message ## .gitignore ## @@ -/fuzz-commit-graph --/fuzz_corpora --/fuzz-pack-headers +/oss-fuzz/fuzz-commit-graph -+/oss-fuzz/fuzz_corpora + /fuzz_corpora +-/fuzz-pack-headers +-/fuzz-pack-idx +/oss-fuzz/fuzz-pack-headers - /fuzz-pack-idx ++/oss-fuzz/fuzz-pack-idx /GIT-BUILD-OPTIONS /GIT-CFLAGS + /GIT-LDFLAGS ## Makefile ## @@ Makefile: SCRIPTS = $(SCRIPT_SH_GEN) \ .gitignore | 6 +++--- Makefile | 6 +++--- fuzz-commit-graph.c => oss-fuzz/fuzz-commit-graph.c | 0 fuzz-pack-headers.c => oss-fuzz/fuzz-pack-headers.c | 0 fuzz-pack-idx.c => oss-fuzz/fuzz-pack-idx.c | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename fuzz-commit-graph.c => oss-fuzz/fuzz-commit-graph.c (100%) rename fuzz-pack-headers.c => oss-fuzz/fuzz-pack-headers.c (100%) rename fuzz-pack-idx.c => oss-fuzz/fuzz-pack-idx.c (100%) diff --git a/.gitignore b/.gitignore index 80b530bbed2..d11fa8297d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ -/fuzz-commit-graph +/oss-fuzz/fuzz-commit-graph /fuzz_corpora -/fuzz-pack-headers -/fuzz-pack-idx +/oss-fuzz/fuzz-pack-headers +/oss-fuzz/fuzz-pack-idx /GIT-BUILD-OPTIONS /GIT-CFLAGS /GIT-LDFLAGS diff --git a/Makefile b/Makefile index d9247ead45b..2d56aae7a1d 100644 --- a/Makefile +++ b/Makefile @@ -686,9 +686,9 @@ SCRIPTS = $(SCRIPT_SH_GEN) \ ETAGS_TARGET = TAGS -FUZZ_OBJS += fuzz-commit-graph.o -FUZZ_OBJS += fuzz-pack-headers.o -FUZZ_OBJS += fuzz-pack-idx.o +FUZZ_OBJS += oss-fuzz/fuzz-commit-graph.o +FUZZ_OBJS += oss-fuzz/fuzz-pack-headers.o +FUZZ_OBJS += oss-fuzz/fuzz-pack-idx.o .PHONY: fuzz-objs fuzz-objs: $(FUZZ_OBJS) diff --git a/fuzz-commit-graph.c b/oss-fuzz/fuzz-commit-graph.c similarity index 100% rename from fuzz-commit-graph.c rename to oss-fuzz/fuzz-commit-graph.c diff --git a/fuzz-pack-headers.c b/oss-fuzz/fuzz-pack-headers.c similarity index 100% rename from fuzz-pack-headers.c rename to oss-fuzz/fuzz-pack-headers.c diff --git a/fuzz-pack-idx.c b/oss-fuzz/fuzz-pack-idx.c similarity index 100% rename from fuzz-pack-idx.c rename to oss-fuzz/fuzz-pack-idx.c base-commit: d3fa443f97e3a8d75b51341e2d5bac380b7422df -- gitgitgadget