blob: 459bda46b26c05ef1314251d291bdeee0cda4380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Fuzz tests
==========
The goal is to add tests for *ALL* protocols supported in libcurl.
We will need some additional patches in the future, to increase coverage.
Building the fuzz target
========================
CC=clang-5.0 CFLAGS="-fsanitize=address -fsanitize-address-use-after-scope -fsanitize-coverage=trace-pc-guard,trace-cmp" ./configure --disable-shared --enable-debug --enable-maintainer-mode
make -sj
cd tests/fuzz
make
|