mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
bd94090a11
+ a simple makefile + README these were mostly equivalent, chromium added support for WEBP_REDUCE_CSP. the file names were normalized as follows: fuzz_advanced_api.{c,cc} -> advanced_api_fuzzer.c fuzz_animation_api.{c,cc} -> animation_api_fuzzer.c fuzz_webp_animencoder.cc -> animencoder_fuzzer.cc fuzz_demux_api.{c,cc} -> demux_api_fuzzer.c fuzz_webp_enc_dec.cc -> enc_dec_fuzzer.cc fuzz.h -> fuzz_utils.h fuzz_simple_api.{c,cc} -> simple_api_fuzzer.c Bug: webp:409 Change-Id: Ib997f0c92f25f8a1f91da83790298cd848b61a5d
20 lines
518 B
Plaintext
20 lines
518 B
Plaintext
Description:
|
|
============
|
|
|
|
This is a collection of tests for the libwebp libraries, currently covering
|
|
fuzzing through the APIs. Additional test vector coverage can be found at:
|
|
https://chromium.googlesource.com/webm/libwebp-test-data
|
|
|
|
Building:
|
|
=========
|
|
|
|
Fuzzers:
|
|
--------
|
|
|
|
Follow the build instructions in ../README for libwebp, optionally adding build
|
|
flags for various sanitizers (e.g., -fsanitize=address).
|
|
|
|
fuzzer/makefile.unix can then be used to compile the fuzzer targets:
|
|
|
|
$ make -C fuzzer -f makefile.unix
|