mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[build] Fuzzer launcher: fix the master/slave option for afl-fuzz
This commit is contained in:
committed by
LeaNumworks
parent
2dee8f2b1f
commit
141b2ee9f4
@@ -4,7 +4,8 @@ import subprocess
|
||||
NUMBER_OF_FUZZERS=8
|
||||
|
||||
def afl_command(name):
|
||||
return ["afl-fuzz", "-t", "10000", "-i", "scenari", "-o", "afl_out", "-M", "epsilon-fuzz-" + name, "./epsilon.bin"]
|
||||
master_option = "-M" if name.startswith("master") else "-S"
|
||||
return ["afl-fuzz", "-t", "10000", "-i", "scenari", "-o", "afl_out", master_option, "epsilon-fuzz-" + name, "./epsilon.bin"]
|
||||
|
||||
def run_afl(commands, name):
|
||||
# Launch the fuzzer
|
||||
|
||||
Reference in New Issue
Block a user