summaryrefslogtreecommitdiff
path: root/fuzz-pack-idx.c
diff options
context:
space:
mode:
authorArthur Chan <arthur.chan@adalogics.com>2022-09-19 14:36:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-09-19 16:34:35 (GMT)
commit6713bfc70c4dc6da1fa4084f000b72f5d74fecfb (patch)
treefa07f323482bdaa28d863165b99c6fb25c7f136b /fuzz-pack-idx.c
parenta0feb8611d4c0b2b5d954efe4e98207f62223436 (diff)
downloadgit-6713bfc70c4dc6da1fa4084f000b72f5d74fecfb.zip
git-6713bfc70c4dc6da1fa4084f000b72f5d74fecfb.tar.gz
git-6713bfc70c4dc6da1fa4084f000b72f5d74fecfb.tar.bz2
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 <arthur.chan@adalogics.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fuzz-pack-idx.c')
-rw-r--r--fuzz-pack-idx.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/fuzz-pack-idx.c b/fuzz-pack-idx.c
deleted file mode 100644
index 0c3d777..0000000
--- a/fuzz-pack-idx.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "object-store.h"
-#include "packfile.h"
-
-int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
-
-int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
-{
- struct packed_git p;
-
- load_idx("fuzz-input", GIT_SHA1_RAWSZ, (void *)data, size, &p);
-
- return 0;
-}