mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-25 13:18:22 +01:00
a027aa93de
`bool mux` -> `use_mux_api` to avoid conflicting with WebPMux variable. Bug: webp:380121350 Change-Id: Ie3f8176efc296fae804c36ee0b27bf8e3034c6e8 |
||
---|---|---|
.. | ||
fuzzer | ||
README.md |
Tests
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 for libwebp, optionally adding build flags for various sanitizers (e.g., -fsanitize=address).
-DWEBP_BUILD_FUZZTEST=ON
can then be used to compile the fuzzer targets:
$ cmake -B ./build -S . -DWEBP_BUILD_FUZZTEST=ON
$ make -C build