From: Jérémie Astor Date: Sat, 9 May 2020 19:31:20 +0000 (+0200) Subject: :wrench: Reduce afl runs X-Git-Tag: nightly~1609 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=c249d88265d4040f97320b84cfecfae64c0f94de;p=gwion.git :wrench: Reduce afl runs --- diff --git a/src/main.c b/src/main.c index 5f2fba6a..798ffbe1 100644 --- a/src/main.c +++ b/src/main.c @@ -19,7 +19,7 @@ static void sig(int unused NUSED) { static void afl_run(const Gwion gwion) { __AFL_INIT(); - while (__AFL_LOOP(256)) { + while (__AFL_LOOP(100)) { FILE* f = fdopen(0, "r"); push_global(gwion, "[afl]"); if(compile_file(gwion, "afl", f))