mirror of https://github.com/google/oss-fuzz.git
[pillow] Fix pillow corpus file name (#4903)
* Fix Pillow corpus file name * Install extra test images for a better starting corpus This includes images that are either: * large * unclear license, so unable to distribute * cause antivirus hits
This commit is contained in:
parent
14452cfb3d
commit
a49b7f7e2c
|
@ -48,9 +48,10 @@ RUN apt-get install -y \
|
|||
tk8.6-dev \
|
||||
zlib1g-dev
|
||||
RUN git clone --depth 1 https://github.com/python-pillow/Pillow
|
||||
# install extra test images for a better starting corpus
|
||||
RUN cd Pillow && depends/install_extra_test_images.sh
|
||||
|
||||
COPY build.sh $SRC/
|
||||
COPY fuzz_* $SRC/Pillow
|
||||
|
||||
WORKDIR $SRC/Pillow
|
||||
|
||||
|
|
|
@ -46,4 +46,4 @@ ASAN_OPTIONS=\$ASAN_OPTIONS:symbolize=1:external_symbolizer_path=\$this_dir/llvm
|
|||
chmod u+x $OUT/$fuzzer_basename
|
||||
done
|
||||
|
||||
find Tests/images Tests/icc Tests/fonts -print | zip -q $OUT/testfiles_fuzzer_seed_corpus.zip -@
|
||||
find Tests/images Tests/icc Tests/fonts -print | zip -q $OUT/fuzz_pillow_seed_corpus.zip -@
|
||||
|
|
Loading…
Reference in New Issue