Skip to content

Commit 4f2d7cc

Browse files
committed
update
1 parent 7dbcd01 commit 4f2d7cc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

fuzzers/aflplusplus_aflfast/fuzzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ def fuzz(input_corpus,
260260

261261
flags += ['-p', 'fast']
262262

263-
# if os.path.exists('./afl++.dict'):
264-
# flags += ['-x', './afl++.dict']
263+
if os.path.exists('./afl++.dict'):
264+
flags += ['-x', './afl++.dict']
265265

266266
# # Move the following to skip for upcoming _double tests:
267267
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:

fuzzers/aflplusplus_mopt/fuzzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ def fuzz(input_corpus,
260260

261261
flags += ['-L', '0']
262262

263-
# if os.path.exists('./afl++.dict'):
264-
# flags += ['-x', './afl++.dict']
263+
if os.path.exists('./afl++.dict'):
264+
flags += ['-x', './afl++.dict']
265265

266266
# # Move the following to skip for upcoming _double tests:
267267
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:

fuzzers/kfuzz_aflfast/fuzzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ def fuzz(input_corpus,
260260

261261
flags += ['-p', 'fast']
262262

263-
# if os.path.exists('./afl++.dict'):
264-
# flags += ['-x', './afl++.dict']
263+
if os.path.exists('./afl++.dict'):
264+
flags += ['-x', './afl++.dict']
265265

266266
# # Move the following to skip for upcoming _double tests:
267267
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:

fuzzers/kfuzz_mopt/fuzzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ def fuzz(input_corpus,
260260

261261
flags += ['-L', '0']
262262

263-
# if os.path.exists('./afl++.dict'):
264-
# flags += ['-x', './afl++.dict']
263+
if os.path.exists('./afl++.dict'):
264+
flags += ['-x', './afl++.dict']
265265

266266
# # Move the following to skip for upcoming _double tests:
267267
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:

0 commit comments

Comments
 (0)