harfbuzz/test/fuzzing
Garret Rieger 647b024784 [subset] Fix fuzzer issue https://oss-fuzz.com/testcase-detail/6521393809588224 2023-04-18 13:21:46 -06:00
..
fonts [subset] Fix fuzzer issue https://oss-fuzz.com/testcase-detail/6521393809588224 2023-04-18 13:21:46 -06:00
graphs
sets
Makefile.am
README.md
hb-draw-fuzzer.cc
hb-fuzzer.hh
hb-repacker-fuzzer.cc
hb-set-fuzzer.cc
hb-shape-fuzzer.cc
hb-subset-fuzzer.cc Check for failed subset input creation in the fuzzer. 2023-03-13 15:21:25 -06:00
main.cc
meson.build
run-draw-fuzzer-tests.py
run-repacker-fuzzer-tests.py
run-shape-fuzzer-tests.py
run-subset-fuzzer-tests.py

README.md

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: