Name Date Size #Lines LOC

..--

fuzzer/H25-Apr-2025-7,2016,785

READMEH A D25-Apr-2025518 2013

README.mdH A D25-Apr-2025510 1912

README

1Description:
2============
3
4This is a collection of tests for the libwebp libraries, currently covering
5fuzzing through the APIs. Additional test vector coverage can be found at:
6https://chromium.googlesource.com/webm/libwebp-test-data
7
8Building:
9=========
10
11Fuzzers:
12--------
13
14Follow the build instructions in ../README for libwebp, optionally adding build
15flags for various sanitizers (e.g., -fsanitize=address).
16
17fuzzer/makefile.unix can then be used to compile the fuzzer targets:
18
19$ make -C fuzzer -f makefile.unix
20

README.md

1# Tests
2
3This is a collection of tests for the libwebp libraries, currently covering
4fuzzing through the APIs. Additional test vector coverage can be found at:
5https://chromium.googlesource.com/webm/libwebp-test-data
6
7## Building
8
9### Fuzzers
10
11Follow the [build instructions](../doc/building.md) for libwebp, optionally
12adding build flags for various sanitizers (e.g., -fsanitize=address).
13
14`fuzzer/makefile.unix` can then be used to compile the fuzzer targets:
15
16```shell
17$ make -C fuzzer -f makefile.unix
18```
19