From d4e6abccc27087f441d68540be6e79404dedb20a Mon Sep 17 00:00:00 2001 From: Yuchong Xie <82574337+Yu3H0@users.noreply.github.com> Date: Fri, 17 Jan 2025 19:04:34 +0800 Subject: [PATCH] drop cmplog --- fuzzers/hfuzz/ensemble_runner.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/fuzzers/hfuzz/ensemble_runner.py b/fuzzers/hfuzz/ensemble_runner.py index 1c9211c3c..2be2ef01a 100644 --- a/fuzzers/hfuzz/ensemble_runner.py +++ b/fuzzers/hfuzz/ensemble_runner.py @@ -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()