From ff9ae596260d588170c387bf3baf6e076a2816f8 Mon Sep 17 00:00:00 2001 From: stivn Date: Thu, 28 Apr 2022 19:12:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9fuzz=20corpus=E8=AF=AD?= =?UTF-8?q?=E6=96=99=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: stivn --- src/core/driver/drivers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/driver/drivers.py b/src/core/driver/drivers.py index dfc50af..5ca37ae 100755 --- a/src/core/driver/drivers.py +++ b/src/core/driver/drivers.py @@ -355,7 +355,7 @@ class ResultManager(object): result_josn_file_path) result_file_path = result_josn_file_path else: - LOG.error("%s not exist", remote_result_file) + LOG.info("%s not exist", remote_result_file) return result_file_path @@ -538,7 +538,7 @@ class CppTestDriver(IDriver): def _push_corpus_if_exist(self, suite_file): if "fuzztest" == self.config.testtype[0]: - corpus_path = os.path.join(get_fuzzer_path(suite_file), "corpus") + corpus_path = os.path.join(get_fuzzer_path(suite_file), os.path.join("corpus", "init")) self.config.device.push_file(corpus_path, os.path.join(self.config.target_test_path, "corpus")) -- Gitee