Nick Wellnhofer eac1c7e2e5 Fuzz target for XML Schemas
This only tests the schema parser for now.
2020-06-23 16:20:27 +02:00
..
2020-06-05 13:53:11 +02:00
2020-06-23 16:20:27 +02:00
2020-06-23 16:20:27 +02:00
2020-06-23 16:20:27 +02:00
2020-06-15 15:23:38 +02:00
2020-06-15 15:23:38 +02:00
2020-06-15 15:23:38 +02:00
2020-06-23 16:20:27 +02:00
2020-06-05 13:53:11 +02:00
2020-06-05 13:53:11 +02:00
2020-06-05 13:53:11 +02:00
2020-06-23 16:20:27 +02:00
2020-06-23 16:20:27 +02:00
2020-06-23 16:20:27 +02:00
2020-06-23 16:20:27 +02:00
2020-06-05 13:53:11 +02:00
2020-06-05 13:53:11 +02:00
2020-06-05 13:53:11 +02:00
2020-06-05 13:53:11 +02:00
2020-06-09 13:53:06 +02:00
2020-06-23 16:20:27 +02:00

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