diff options
author | Joseph Bisch <joseph.bisch@gmail.com> | 2017-01-07 20:01:07 -0500 |
---|---|---|
committer | Joseph Bisch <joseph.bisch@gmail.com> | 2017-01-07 20:01:07 -0500 |
commit | cf4690725667211bc8a8998e362c6bda24dd7528 (patch) | |
tree | ecd89755df29366a40806865a7910954a5b49e9f /.gitignore | |
parent | 7c09b72a26884bcd9711f39e2730ab09e658eec1 (diff) | |
download | irssi-cf4690725667211bc8a8998e362c6bda24dd7528.zip |
Add frontend for fuzzing
Use the following configure command:
$ ./configure --with-fuzzer --with-fuzzer-lib=/path/to/libFuzzer.a \
CC=clang CXX=clang++
Places an irssi-fuzz in src/fe-fuzz/ after build.
Also can specify SANFLAGS to override the chosen sanitizer flags
(defaults to "-g -fsanitize=address -fsanitize-coverage=trace-pc-guard").
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -32,6 +32,7 @@ docs/help/[a-z]* docs/help/in/Makefile.am src/fe-text/irssi +src/fe-fuzz/irssi-fuzz src/fe-common/irc/irc-modules.c src/irc/irc.c @@ -46,6 +47,9 @@ src/perl/ui/*.c src/perl/*/MYMETA.* src/perl/*/Makefile.old +src/fe-fuzz/crash-* +src/fe-fuzz/oom-* + *.a *.bs *.la |