diff options
author | AdamKorcz <44787359+AdamKorcz@users.noreply.github.com> | 2020-12-10 19:43:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 20:43:11 +0100 |
commit | 94415f75174cba77a9b1cc7745d660e654170af0 (patch) | |
tree | 075314a26d0c13379e8e27fb3bb10b62864fc178 /Makefile | |
parent | 0c5fca2d8562e1cd49469b47a625f8f267dac3de (diff) | |
download | gitea-94415f75174cba77a9b1cc7745d660e654170af0.tar.gz gitea-94415f75174cba77a9b1cc7745d660e654170af0.zip |
Added 2 fuzzers (#13818)
* Added fuzzer
Signed-off-by: AdamKorcz <adam@adalogics.com>
* Added better fuzzer names
Signed-off-by: AdamKorcz <adam@adalogics.com>
* Moved fuzzer to /tools
* Update tools/fuzz.go
Co-authored-by: 6543 <6543@obermui.de>
* Update tools/fuzz.go
* Update tools/fuzz.go
Co-authored-by: silverwind <me@silverwind.io>
* Added tools to Makefile
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ TAGS ?= TAGS_SPLIT := $(subst $(COMMA), ,$(TAGS)) TAGS_EVIDENCE := $(MAKE_EVIDENCE_DIR)/tags -GO_DIRS := cmd integrations models modules routers build services vendor +GO_DIRS := cmd integrations models modules routers build services vendor tools GO_SOURCES := $(wildcard *.go) GO_SOURCES += $(shell find $(GO_DIRS) -type f -name "*.go" -not -path modules/options/bindata.go -not -path modules/public/bindata.go -not -path modules/templates/bindata.go) |