Skip to content

Commit

Permalink
wuffs: fix build by fixing corpus link (google#8084)
Browse files Browse the repository at this point in the history
Existing corpus link is no longer accessible. Switching to a reliable source.

Fixing this also to unbreak Fuzz Introspector tests here ossf/fuzz-introspector#412 (comment)
  • Loading branch information
DavidKorczynski authored and MartinPetkov committed Aug 15, 2022
1 parent f5a99e0 commit c591eec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions projects/wuffs/Dockerfile
Expand Up @@ -30,10 +30,9 @@ RUN mkdir bmpsuite_corpus
RUN unzip -j bmpsuite.zip -d bmpsuite_corpus
RUN rm bmpsuite.zip

RUN wget -O pngsuite.tgz http://www.schaik.com/pngsuite/PngSuite-2017jul19.tgz
RUN mkdir pngsuite_corpus
RUN tar xf pngsuite.tgz --one-top-level=pngsuite_corpus
RUN rm pngsuite.tgz
RUN mkdir pngsuite_corpus && \
git clone --depth=1 https://github.com/MozillaSecurity/fuzzdata && \
cp ./fuzzdata/samples/png/common/*.png ./pngsuite_corpus

RUN wget -O rapidjson.zip "https://github.com/guidovranken/rapidjson-fuzzers/blob/master/fuzzer_seed_corpus.zip?raw=true"
RUN mkdir rapidjson_corpus
Expand Down

0 comments on commit c591eec

Please sign in to comment.