From 6713bfc70c4dc6da1fa4084f000b72f5d74fecfb Mon Sep 17 00:00:00 2001 From: Arthur Chan Date: Mon, 19 Sep 2022 14:36:54 +0000 Subject: 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 Signed-off-by: Junio C Hamano --- fuzz-commit-graph.c | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 fuzz-commit-graph.c (limited to 'fuzz-commit-graph.c') diff --git a/fuzz-commit-graph.c b/fuzz-commit-graph.c deleted file mode 100644 index e7cf6d5b0f..0000000000 --- a/fuzz-commit-graph.c +++ /dev/null @@ -1,19 +0,0 @@ -#include "commit-graph.h" -#include "repository.h" - -struct commit_graph *parse_commit_graph(struct repository *r, - void *graph_map, size_t graph_size); - -int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); - -int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) -{ - struct commit_graph *g; - - initialize_the_repository(); - g = parse_commit_graph(the_repository, (void *)data, size); - repo_clear(the_repository); - free_commit_graph(g); - - return 0; -} -- cgit v1.2.3