From 29f0bb1c6a6e689f41bd3c92b1d4a607983cce80 Mon Sep 17 00:00:00 2001 From: Carlo Maragno Date: Fri, 1 Apr 2022 13:23:01 +0200 Subject: Add basic support for Italian users --- include/afl-fuzz.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 3712fc4f..9eac502f 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -384,7 +384,7 @@ typedef struct afl_env_vars { afl_force_ui, afl_i_dont_care_about_missing_crashes, afl_bench_just_one, afl_bench_until_crash, afl_debug_child, afl_autoresume, afl_cal_fast, afl_cycle_schedules, afl_expand_havoc, afl_statsd, afl_cmplog_only_new, - afl_exit_on_seed_issues, afl_try_affinity, afl_ignore_problems; + afl_exit_on_seed_issues, afl_try_affinity, afl_ignore_problems, afl_pizza_mode; u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_preload, -- cgit v1.2.3 From 657e4cc81234967495792174856605e4c29fcf35 Mon Sep 17 00:00:00 2001 From: Carlo Maragno Date: Fri, 1 Apr 2022 14:56:27 +0200 Subject: Fix layout --- include/afl-fuzz.h | 2 ++ include/envs.h | 1 + 2 files changed, 3 insertions(+) (limited to 'include') diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 9eac502f..9fddac32 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -1082,6 +1082,8 @@ void write_setup_file(afl_state_t *, u32, char **); void write_stats_file(afl_state_t *, u32, double, double, double); void maybe_update_plot_file(afl_state_t *, u32, double, double); void show_stats(afl_state_t *); +void show_stats_normal(afl_state_t *); +void show_stats_pizza(afl_state_t *); void show_init_stats(afl_state_t *); /* StatsD */ diff --git a/include/envs.h b/include/envs.h index f4327d8c..2c9305f6 100644 --- a/include/envs.h +++ b/include/envs.h @@ -221,6 +221,7 @@ static char *afl_environment_variables[] = { "AFL_USE_FASAN", "AFL_USE_QASAN", "AFL_PRINT_FILENAMES", + "AFL_PIZZA_MODE", NULL }; -- cgit v1.2.3 From 26f3ec28eef78f3a57bc3c308de9a3105cb63538 Mon Sep 17 00:00:00 2001 From: Carlo Maragno Date: Sat, 2 Apr 2022 13:11:39 +0200 Subject: Fix dyslexia and clang format --- include/afl-fuzz.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 9fddac32..6cde7695 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -384,7 +384,8 @@ typedef struct afl_env_vars { afl_force_ui, afl_i_dont_care_about_missing_crashes, afl_bench_just_one, afl_bench_until_crash, afl_debug_child, afl_autoresume, afl_cal_fast, afl_cycle_schedules, afl_expand_havoc, afl_statsd, afl_cmplog_only_new, - afl_exit_on_seed_issues, afl_try_affinity, afl_ignore_problems, afl_pizza_mode; + afl_exit_on_seed_issues, afl_try_affinity, afl_ignore_problems, + afl_pizza_mode; u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_preload, -- cgit v1.2.3