diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2019-09-10 23:48:57 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2019-09-11 03:24:29 +0300 |
commit | 2dd9b6577833f6aab7f3a983a224642ffb32b3ae (patch) | |
tree | 0095d32a912e4b3d28661aafb7aa7c8a250461d5 /tools | |
parent | 39b7b6cb4ad4a9765afb4e0b47ca5d9aa004d8c5 (diff) | |
download | systemd-2dd9b6577833f6aab7f3a983a224642ffb32b3ae.tar.gz |
oss-fuzz.sh: stop downloading the skia seed corpus
When the fuzz target was integrated, it was added as a stopgap
to get fuzz-json up and running. It served its purpose and can
safely be removed to prevent tools/oss-fuzz.sh from failing with
```
+wget -O /home/travis/build/systemd/systemd/out/fuzz-json_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/skjson_seed_corpus.zip
--2019-09-10 22:40:44-- https://storage.googleapis.com/skia-fuzzer/oss-fuzz/skjson_seed_corpus.zip
Resolving storage.googleapis.com (storage.googleapis.com)... 74.125.70.128, 2607:f8b0:4001:c05::80
Connecting to storage.googleapis.com (storage.googleapis.com)|74.125.70.128|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
2019-09-10 22:40:44 ERROR 403: Forbidden.
```
Ideally we should put our seed corpus somewhere and download it from there
but I haven't got round to it.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/oss-fuzz.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/oss-fuzz.sh b/tools/oss-fuzz.sh index 6d9010ce16..5e48a7e0c6 100755 --- a/tools/oss-fuzz.sh +++ b/tools/oss-fuzz.sh @@ -48,7 +48,6 @@ zip -jqr $OUT/fuzz-dns-packet_seed_corpus.zip $df/packet install -Dt $OUT/src/shared/ $build/src/shared/libsystemd-shared-*.so -wget -O $OUT/fuzz-json_seed_corpus.zip https://storage.googleapis.com/skia-fuzzer/oss-fuzz/skjson_seed_corpus.zip wget -O $OUT/fuzz-json.dict https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/json.dict find $build -maxdepth 1 -type f -executable -name "fuzz-*" -exec mv {} $OUT \; |