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 f42d279890 Fix build api breaks and morale (#85)
* fix build api breaks

* fix ci

* zig parser api update
7 months ago
..
.gitignore Fix build api breaks and morale (#85) 7 months ago
Makefile.am Fix build api breaks and morale (#85) 7 months ago
README Fix build api breaks and morale (#85) 7 months ago
fuzz.c Fix build api breaks and morale (#85) 7 months ago
fuzz.h Fix build api breaks and morale (#85) 7 months ago
genSeed.c Fix build api breaks and morale (#85) 7 months ago
html.c Fix build api breaks and morale (#85) 7 months ago
html.dict Fix build api breaks and morale (#85) 7 months ago
html.options Fix build api breaks and morale (#85) 7 months ago
regexp.c Fix build api breaks and morale (#85) 7 months ago
regexp.dict Fix build api breaks and morale (#85) 7 months ago
regexp.options Fix build api breaks and morale (#85) 7 months ago
schema.c Fix build api breaks and morale (#85) 7 months ago
schema.dict Fix build api breaks and morale (#85) 7 months ago
schema.options Fix build api breaks and morale (#85) 7 months ago
testFuzzer.c Fix build api breaks and morale (#85) 7 months ago
uri.c Fix build api breaks and morale (#85) 7 months ago
uri.options Fix build api breaks and morale (#85) 7 months ago
xml.c Fix build api breaks and morale (#85) 7 months ago
xml.dict Fix build api breaks and morale (#85) 7 months ago
xml.options Fix build api breaks and morale (#85) 7 months ago
xpath.c Fix build api breaks and morale (#85) 7 months ago
xpath.dict Fix build api breaks and morale (#85) 7 months ago
xpath.options Fix build api breaks and morale (#85) 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