You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Matt Knight d10482c9bd Vendor (#19)
* vendor dependencies
7 months ago
..
.gitignore Vendor (#19) 7 months ago
Makefile.am Vendor (#19) 7 months ago
README Vendor (#19) 7 months ago
fuzz.c Vendor (#19) 7 months ago
fuzz.h Vendor (#19) 7 months ago
genSeed.c Vendor (#19) 7 months ago
html.c Vendor (#19) 7 months ago
html.dict Vendor (#19) 7 months ago
html.options Vendor (#19) 7 months ago
regexp.c Vendor (#19) 7 months ago
regexp.dict Vendor (#19) 7 months ago
regexp.options Vendor (#19) 7 months ago
schema.c Vendor (#19) 7 months ago
schema.dict Vendor (#19) 7 months ago
schema.options Vendor (#19) 7 months ago
testFuzzer.c Vendor (#19) 7 months ago
uri.c Vendor (#19) 7 months ago
uri.options Vendor (#19) 7 months ago
xml.c Vendor (#19) 7 months ago
xml.dict Vendor (#19) 7 months ago
xml.options Vendor (#19) 7 months ago
xpath.c Vendor (#19) 7 months ago
xpath.dict Vendor (#19) 7 months ago
xpath.options Vendor (#19) 7 months ago

README

libFuzzer instructions for libxml2
==================================

Set compiler and options:

    export CC=clang
    export CFLAGS="-g -fsanitize=fuzzer-no-link,address,undefined \
        -fno-sanitize-recover=all \
        -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION"

Build libxml2 with instrumentation:

    ./configure --without-python
    make

Run fuzzers:

    make -C fuzz fuzz-xml