Mercurial > dropbear
diff Makefile.in @ 1380:d201105df2ed fuzz
add fuzzer-verify
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 26 May 2017 00:20:01 +0800 |
parents | dd5d7b7141b9 |
children | 4afde04f0607 |
line wrap: on
line diff
--- a/Makefile.in Fri May 26 00:19:53 2017 +0800 +++ b/Makefile.in Fri May 26 00:20:01 2017 +0800 @@ -245,7 +245,7 @@ ## Fuzzing targets # list of fuzz targets -FUZZ_TARGETS=fuzzer-preauth fuzzer-pubkey +FUZZ_TARGETS=fuzzer-preauth fuzzer-pubkey fuzzer-verify FUZZER_OPTIONS = $(addsuffix .options, $(FUZZ_TARGETS)) @@ -270,6 +270,9 @@ fuzzer-pubkey: fuzzer-pubkey.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ +fuzzer-verify: fuzzer-verify.o $(HEADERS) $(LIBTOM_DEPS) Makefile $(svrfuzzobjs) + $(CXX) $(CXXFLAGS) [email protected] $(LDFLAGS) $(svrfuzzobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@ + fuzzer-%.options: Makefile echo "[libfuzzer]" > $@ echo "max_len = 50000" >> $@