Add basic fuzzing build tasks config.nims file

This commit is contained in:
kdeme 2019-09-28 12:58:56 +02:00 committed by zah
parent a3a33170db
commit e101902aa5
1 changed files with 30 additions and 0 deletions

30
tests/fuzzing/config.nims Normal file
View File

@ -0,0 +1,30 @@
proc aflSwitches() =
switch("define", "afl")
switch("define", "noSignalHandler")
switch("cc", "gcc")
switch("gcc.exe", "afl-gcc")
switch("gcc.linkerexe", "afl-gcc")
switch("out", "fuzz-afl")
proc libFuzzerSwitches() =
switch("noMain", "")
switch("cc", "clang")
switch("passC", "-fsanitize=fuzzer,address")
switch("passL", "-fsanitize=fuzzer,address")
switch("out", "fuzz-libfuzzer")
proc generalSwitches() =
switch("verbosity", "0")
switch("hints", "off")
switch("warnings", "off")
switch("define", "chronicles_log_level:fatal")
task build_afl, "Build for afl fuzzing":
aflSwitches()
generalSwitches()
setCommand("c")
task build_libfuzzer, "Build for libFuzzer fuzzing":
libFuzzerSwitches()
generalSwitches()
setCommand("c")