Skip to content

Commit

Permalink
drop cmplog
Browse files Browse the repository at this point in the history
  • Loading branch information
Yu3H0 authored Jan 17, 2025
1 parent de2131c commit d4e6abc
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions fuzzers/hfuzz/ensemble_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,14 +445,8 @@ def __init__(
def build_command(self):
"""Build the command for running the HFuzz2 fuzzer."""
if self.cmplog_target_binary:
# 如果有 cmplog_target_binary,则像 cmplog 一样加上 -c 参数
self.command = [
HFUZZ2_FUZZ_BIN_NAME,
'-c',
self.cmplog_target_binary
]
self.command = [HFUZZ2_FUZZ_BIN_NAME]
else:
# 否则普通运行
self.command = [HFUZZ2_FUZZ_BIN_NAME]
self.add_common_args()

Expand Down

0 comments on commit d4e6abc

Please sign in to comment.