mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 19:38:09 +00:00
cleanup and rename _DISCARD->_SKIP
This commit is contained in:
@ -835,7 +835,7 @@ static void edit_params(u32 argc, char **argv, char **envp) {
|
||||
cc_params[cc_par_cnt++] =
|
||||
"-D__AFL_COVERAGE()=int __afl_selective_coverage = 1;"
|
||||
"extern \"C\" void __afl_coverage_discard();"
|
||||
"extern \"C\" void __afl_coverage_abort();"
|
||||
"extern \"C\" void __afl_coverage_skip();"
|
||||
"extern \"C\" void __afl_coverage_on();"
|
||||
"extern \"C\" void __afl_coverage_off();";
|
||||
|
||||
@ -844,7 +844,7 @@ static void edit_params(u32 argc, char **argv, char **envp) {
|
||||
cc_params[cc_par_cnt++] =
|
||||
"-D__AFL_COVERAGE()=int __afl_selective_coverage = 1;"
|
||||
"void __afl_coverage_discard();"
|
||||
"void __afl_coverage_abort();"
|
||||
"void __afl_coverage_skip();"
|
||||
"void __afl_coverage_on();"
|
||||
"void __afl_coverage_off();";
|
||||
|
||||
@ -857,7 +857,7 @@ static void edit_params(u32 argc, char **argv, char **envp) {
|
||||
cc_params[cc_par_cnt++] = "-D__AFL_COVERAGE_OFF()=__afl_coverage_off()";
|
||||
cc_params[cc_par_cnt++] =
|
||||
"-D__AFL_COVERAGE_DISCARD()=__afl_coverage_discard()";
|
||||
cc_params[cc_par_cnt++] = "-D__AFL_COVERAGE_ABORT()=__afl_coverage_abort()";
|
||||
cc_params[cc_par_cnt++] = "-D__AFL_COVERAGE_SKIP()=__afl_coverage_skip()";
|
||||
cc_params[cc_par_cnt++] =
|
||||
"-D__AFL_FUZZ_TESTCASE_BUF=(__afl_fuzz_ptr ? __afl_fuzz_ptr : "
|
||||
"__afl_fuzz_alt_ptr)";
|
||||
|
Reference in New Issue
Block a user