about summary refs log tree commit diff
path: root/benchmark/benchmark.py
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-11-17 09:17:59 +0000
committerGitHub <noreply@github.com>2023-11-17 09:17:59 +0000
commit43b8812c5c32da1a5d549b4484f19c2c48120962 (patch)
tree8b30730605e1b4b4cf5511d2956ee6927ba3d2ad /benchmark/benchmark.py
parent885f949ac75efb2dd6379f72ef7918e537d77b22 (diff)
downloadafl++-43b8812c5c32da1a5d549b4484f19c2c48120962.tar.gz
Update benchmark.py
Diffstat (limited to 'benchmark/benchmark.py')
-rw-r--r--benchmark/benchmark.py2
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]