Script to fetch new corpus and update the repository
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Sun, 07 Mar 2021 16:06:25 +0800 |
parents |
6b857c4abe66 |
children |
|
rev |
line source |
20
|
1 FUZZ_TARGETS=fuzzer-preauth fuzzer-preauth_nomaths fuzzer-pubkey fuzzer-verify \ |
|
2 fuzzer-client fuzzer-client_nomaths fuzzer-kexcurve25519 fuzzer-kexdh fuzzer-kexecdh fuzzer-postauth_nomaths |
0
|
3 |
|
4 CORPUSES = $(addsuffix _seed_corpus.zip, $(FUZZ_TARGETS)) |
|
5 |
|
6 all: $(CORPUSES) |
|
7 |
|
8 %_seed_corpus.zip: %/* Makefile |
|
9 -rm $@ |
|
10 cd $*; zip ../$@ * |
|
11 |
|
12 list-fuzz-targets: |
|
13 @echo $(FUZZ_TARGETS) |
|
14 |