diff options
author | van Hauser <vh@thc.org> | 2022-04-03 09:31:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-03 09:31:23 +0200 |
commit | ef5543680aea31e193ea5794c023dac8cc3ca7d6 (patch) | |
tree | 8dc251d65376b47ce17121bdf328fc79c68243f2 /src/afl-fuzz.c | |
parent | c4363dd8b3d19a3e4bab8bc1fca1708ae2ff7899 (diff) | |
parent | 26f3ec28eef78f3a57bc3c308de9a3105cb63538 (diff) | |
download | afl++-ef5543680aea31e193ea5794c023dac8cc3ca7d6.tar.gz |
Merge pull request #1374 from CarloMara/stable
Add new mode to AFLplusplus
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index c5333056..cc1240e7 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -2528,8 +2528,17 @@ stop_fuzzing: write_bitmap(afl); save_auto(afl); - SAYF(CURSOR_SHOW cLRD "\n\n+++ Testing aborted %s +++\n" cRST, - afl->stop_soon == 2 ? "programmatically" : "by user"); + if (afl->afl_env.afl_pizza_mode) { + + SAYF(CURSOR_SHOW cLRD "\n\n+++ Baking aborted %s +++\n" cRST, + afl->stop_soon == 2 ? "programmatically" : "by the chef"); + + } else { + + SAYF(CURSOR_SHOW cLRD "\n\n+++ Testing aborted %s +++\n" cRST, + afl->stop_soon == 2 ? "programmatically" : "by user"); + + } if (afl->most_time_key == 2) { |