Skip to content

Commit 6713bfc

Browse files
arthurscchangitster
authored andcommitted
fuzz: reorganise the path for existing oss-fuzz fuzzers
In order to provide a better organisation for oss-fuzz fuzzers and to avoid top-level clustters in the git repository when more fuzzers are introduced, move the existing fuzzer-related sources to their own oss-fuzz/ hierarchy. Grouping the fuzzers into their own directory, separate their application on fuzz-testing from the core functionalities of the git code, prvides better and tidier structure the oss-fuzz fuzzing library to manage, locate, build and execute those fuzzers for fuzz-testing purposes in future development. Signed-off-by: Arthur Chan <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a0feb86 commit 6713bfc

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
/fuzz-commit-graph
21
/fuzz_corpora
3-
/fuzz-pack-headers
4-
/fuzz-pack-idx
52
/GIT-BUILD-OPTIONS
63
/GIT-CFLAGS
74
/GIT-LDFLAGS

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -681,9 +681,9 @@ SCRIPTS = $(SCRIPT_SH_GEN) \
681681

682682
ETAGS_TARGET = TAGS
683683

684-
FUZZ_OBJS += fuzz-commit-graph.o
685-
FUZZ_OBJS += fuzz-pack-headers.o
686-
FUZZ_OBJS += fuzz-pack-idx.o
684+
FUZZ_OBJS += oss-fuzz/fuzz-commit-graph.o
685+
FUZZ_OBJS += oss-fuzz/fuzz-pack-headers.o
686+
FUZZ_OBJS += oss-fuzz/fuzz-pack-idx.o
687687
.PHONY: fuzz-objs
688688
fuzz-objs: $(FUZZ_OBJS)
689689

oss-fuzz/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fuzz-commit-graph
2+
fuzz-pack-headers
3+
fuzz-pack-idx
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)