diff options
author | van Hauser <vh@thc.org> | 2023-11-17 09:17:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 09:17:59 +0000 |
commit | 43b8812c5c32da1a5d549b4484f19c2c48120962 (patch) | |
tree | 8b30730605e1b4b4cf5511d2956ee6927ba3d2ad | |
parent | 885f949ac75efb2dd6379f72ef7918e537d77b22 (diff) | |
download | afl++-43b8812c5c32da1a5d549b4484f19c2c48120962.tar.gz |
Update benchmark.py
-rw-r--r-- | benchmark/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index 7184ccef..e9539759 100644 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -248,7 +248,7 @@ async def main() -> None: cmds = [] for fuzzer_idx, afl in enumerate(fuzzers): name = ["-o", outdir, "-M" if fuzzer_idx == 0 else "-S", str(afl)] - cmds.append(["afl-fuzz", "-i", f"{args.basedir}/in"] + name + ["-s", "123", "V10", "-D", f"./{binary}"]) + cmds.append(["afl-fuzz", "-i", f"{args.basedir}/in"] + name + ["-s", "123", "-V10", "-D", f"./{binary}"]) # Prepare the afl-fuzz tasks, and then block while waiting for them to finish. fuzztasks = [run_command(cmds[cpu]) for cpu in fuzzers] |