harfbuzz/test/fuzzing
Behdad Esfahbod e0aee5815a [test] Respect MESON_EXE_WRAPPER in more test runners
It's not working for me though. Meson doesn't seem to set WINEPATH
during testing.
2025-03-22 14:56:37 -06:00
..
fonts [subset] fix fuzzer found heap use after free in BASE subsetting. 2024-05-13 13:39:20 -07:00
graphs [repacker] Fix fuzzer memory leak. 2023-05-27 01:16:46 +02:00
sets [fuzz] minor, move two fuzzer cases to their correct place 2020-02-12 19:17:18 +03:30
hb-draw-fuzzer.cc unused-parameter in test/fuzzing/hb-draw-fuzzer.cc 2024-10-06 22:48:37 +03:00
hb-fuzzer.hh [test] Build with HB_MINI 2024-06-20 11:17:10 -07:00
hb-repacker-fuzzer.cc [repacker] Also rename api method from hb_subset_repack_or_fail -> hb_subset_serialize_or_fail. 2025-01-07 13:39:51 -07:00
hb-set-fuzzer.cc [fuzzer] In 50% of runs don't fail the allocator 2022-07-01 15:25:09 -06:00
hb-shape-fuzzer.cc [font-funcs] Add two new API 2025-03-08 11:50:53 -07:00
hb-subset-fuzzer.cc Check for failed subset input creation in the fuzzer. 2023-03-13 15:21:25 -06:00
main.cc [blob] Add failing versions of create API 2021-06-15 13:56:30 -06:00
meson.build [tests/fuzzing] Use the correct dirs for subset and repacker fuzzers 2025-02-09 18:42:45 +02:00
README.md Update test/fuzzing/README 2022-08-03 11:31:34 -06:00
run-fuzzer-tests.py [test] Respect MESON_EXE_WRAPPER in more test runners 2025-03-22 14:56:37 -06:00

To build the fuzzers with libFuzzer to perform actual fuzzing, build with:

CXX=clang++ CXXFLAGS="-fsanitize=address,fuzzer-no-link" meson fuzzbuild --default-library=static -Dfuzzer_ldflags="-fsanitize=address,fuzzer"

ninja -Cfuzzbuild

Then, run the fuzzer like this:

fuzzbuild/test/fuzzing/hb-{shape,draw,subset,set}-fuzzer [-max_len=2048] [CORPUS_DIR]

Where max_len specifies the maximal length of font files to handle. The smaller the faster.

For more details consult the following locations: