diff --git a/fuzzers/aflplusplus_aflfast/fuzzer.py b/fuzzers/aflplusplus_aflfast/fuzzer.py index 55f1ef977..546bfd651 100755 --- a/fuzzers/aflplusplus_aflfast/fuzzer.py +++ b/fuzzers/aflplusplus_aflfast/fuzzer.py @@ -260,8 +260,8 @@ def fuzz(input_corpus, flags += ['-p', 'fast'] - # if os.path.exists('./afl++.dict'): - # flags += ['-x', './afl++.dict'] + if os.path.exists('./afl++.dict'): + flags += ['-x', './afl++.dict'] # # Move the following to skip for upcoming _double tests: # if os.path.exists(cmplog_target_binary) and no_cmplog is False: diff --git a/fuzzers/aflplusplus_mopt/fuzzer.py b/fuzzers/aflplusplus_mopt/fuzzer.py index 44d474614..c93a06a0d 100755 --- a/fuzzers/aflplusplus_mopt/fuzzer.py +++ b/fuzzers/aflplusplus_mopt/fuzzer.py @@ -260,8 +260,8 @@ def fuzz(input_corpus, flags += ['-L', '0'] - # if os.path.exists('./afl++.dict'): - # flags += ['-x', './afl++.dict'] + if os.path.exists('./afl++.dict'): + flags += ['-x', './afl++.dict'] # # Move the following to skip for upcoming _double tests: # if os.path.exists(cmplog_target_binary) and no_cmplog is False: diff --git a/fuzzers/kfuzz_aflfast/fuzzer.py b/fuzzers/kfuzz_aflfast/fuzzer.py index 55f1ef977..546bfd651 100755 --- a/fuzzers/kfuzz_aflfast/fuzzer.py +++ b/fuzzers/kfuzz_aflfast/fuzzer.py @@ -260,8 +260,8 @@ def fuzz(input_corpus, flags += ['-p', 'fast'] - # if os.path.exists('./afl++.dict'): - # flags += ['-x', './afl++.dict'] + if os.path.exists('./afl++.dict'): + flags += ['-x', './afl++.dict'] # # Move the following to skip for upcoming _double tests: # if os.path.exists(cmplog_target_binary) and no_cmplog is False: diff --git a/fuzzers/kfuzz_mopt/fuzzer.py b/fuzzers/kfuzz_mopt/fuzzer.py index 44d474614..c93a06a0d 100755 --- a/fuzzers/kfuzz_mopt/fuzzer.py +++ b/fuzzers/kfuzz_mopt/fuzzer.py @@ -260,8 +260,8 @@ def fuzz(input_corpus, flags += ['-L', '0'] - # if os.path.exists('./afl++.dict'): - # flags += ['-x', './afl++.dict'] + if os.path.exists('./afl++.dict'): + flags += ['-x', './afl++.dict'] # # Move the following to skip for upcoming _double tests: # if os.path.exists(cmplog_target_binary) and no_cmplog is False: