Commit 2332467b authored by Miek Gieben's avatar Miek Gieben Committed by GitHub

Fuzz: fix forward build (#3200)

* Fuzz: fix forward build
Signed-off-by: default avatarMiek Gieben <miek@miek.nl>

* Flag not released yet, wget quiet
Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
parent 295be732
...@@ -55,7 +55,7 @@ ifeq ($(TEST_TYPE),fuzzit) ...@@ -55,7 +55,7 @@ ifeq ($(TEST_TYPE),fuzzit)
LIBFUZZER=YES $(MAKE) -f Makefile.fuzz all; \ LIBFUZZER=YES $(MAKE) -f Makefile.fuzz all; \
$(MAKE) -sf Makefile.fuzz fuzzit; \ $(MAKE) -sf Makefile.fuzz fuzzit; \
for i in `$(MAKE) -sf Makefile.fuzz echo`; do echo $$i; \ for i in `$(MAKE) -sf Makefile.fuzz echo`; do echo $$i; \
./fuzzit create job --if-not-exists --type $(FUZZIT_TYPE) coredns/$$i ./$$i; \ ./fuzzit create job --type $(FUZZIT_TYPE) coredns/$$i ./$$i; \
done; \ done; \
fi; fi;
endif endif
......
...@@ -51,7 +51,7 @@ else ...@@ -51,7 +51,7 @@ else
endif endif
fuzzit: fuzzit:
wget -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/$(FUZZIT)/fuzzit_Linux_x86_64 && chmod +x fuzzit wget --quiet -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/$(FUZZIT)/fuzzit_Linux_x86_64 && chmod +x fuzzit
.PHONY: clean .PHONY: clean
clean: clean:
......
...@@ -22,7 +22,7 @@ func init() { ...@@ -22,7 +22,7 @@ func init() {
// Fuzz fuzzes forward. // Fuzz fuzzes forward.
func Fuzz(data []byte) int { func Fuzz(data []byte) int {
return fuzz.Do(f, nil, data) return fuzz.Do(f, data)
} }
type r struct{} type r struct{}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment