Home
last modified time | relevance | path

Searched refs:log_path (Results 1 – 15 of 15) sorted by relevance

/test/testfwk/xdevice/plugins/devicetest/log/
Dlogger.py102 def get_test_logger(log_path, tag, prefix=None, filename=None, argument
150 create_dir(log_path)
152 os.path.join(log_path, filename), encoding="utf-8")
154 log_path = os.path.join(log_path, filename)
155 create_dir(log_path)
157 os.path.join(log_path, 'test_run_details.log'), encoding="utf-8")
196 def logger(log_path, tag, prefix=None, filename=None, is_debug=False): argument
211 create_dir(log_path)
212 create_latest_log_alias(log_path)
213 get_logger = get_test_logger(log_path, tag, prefix, filename,
/test/testfwk/xdevice/src/xdevice/_core/executor/
Drequest.py93 log_path = os.path.join(report_path, Variables.report_vars.log_dir)
94 os.makedirs(log_path, exist_ok=True)
105 self.config.log_path = log_path
107 Scheduler.start_task_log(self.config.log_path)
108 Scheduler.start_encrypt_log(self.config.log_path)
Dscheduler.py867 def start_task_log(cls, log_path): argument
869 tool_log_file = os.path.join(log_path, tool_file_name)
873 def start_encrypt_log(cls, log_path): argument
877 encrypt_log_file = os.path.join(log_path, encrypt_file_name)
Dconcurrent.py113 self.task.config.log_path,
/test/testfwk/developer_test/src/core/
Dutils.py67 log_path = os.path.join(report_path, "log")
68 os.makedirs(log_path, exist_ok=True)
72 device_log_file = os.path.join(log_path, device_file_name)
/test/testfwk/xdevice/src/xdevice/_core/report/
Dresult_reporter.py217 exec_info.log_path = self.report_path
388 log_path = os.path.join(self.report_path, "log", module_name)
390 if os.path.exists(log_path):
391 for filename in os.listdir(log_path):
393 file_path = os.path.join(log_path, filename)
407 log_path = os.path.join(self.report_path, "log")
408 return {f: f"log/{f}" for f in os.listdir(log_path) if f.startswith("task_log.log")}
594 LOG.info("Log path: %s", self.exec_info.log_path)
723 summary_ini_content, "Log Path=%s\n" % self.exec_info.log_path)
Dreporter_helper.py71 log_path = "log_path" variable in ReportConstant
314 log_path = "" variable in ExecInfo
503 exec_info.log_path = os.path.abspath(os.path.join(report_path, "log"))
/test/testfwk/xdevice/src/xdevice/_core/
Dutils.py400 log_path = os.path.join(report_path, Variables.report_vars.log_dir, round_folder)
402 log_path = os.path.join(log_path, module_name)
403 os.makedirs(log_path, exist_ok=True)
410 device_log_file = os.path.join(log_path, device_file_name)
/test/testfwk/developer_test/src/core/command/
Drun.py342 log_path = os.path.join(result_rootpath, "log")
344 os.makedirs(log_path, exist_ok=True)
347 Scheduler.start_task_log(log_path)
Ddistribute_utils.py76 exec_info.log_path = os.path.join(result_rootpath, "log")
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
Ddrivers_lite.py1080 log_path = get_config_value('log_path', json_config.get_driver(),
1082 log_path = str(log_path.replace("/", "", 1)) if log_path.startswith(
1083 "/") else str(log_path)
1084 LOG.debug("The log path is:%s" % log_path)
1085 file_path = get_file_absolute_path(log_path,
/test/testfwk/developer_test/src/core/driver/
Ddrivers.py125 log_path = os.path.join(report_path, Variables.report_vars.log_dir)
126 os.makedirs(log_path, exist_ok=True)
130 device_log_file = os.path.join(log_path, device_file_name)
573log_path = get_result_savepath(request.root.source.source_file, request.config.report_path)
575 xml_path = os.path.join(log_path, f"{suit_name}.xml")
/test/testfwk/xdevice/plugins/devicetest/runner/
Dprepare.py123 self.cur_case.log_path = "./log/test_run_summary.log"
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
Ddevice.py1104 def _get_log(self, log_path, *params): argument
1113 log_result = self.device.execute_shell_command("ls {}".format(log_path))
1120 data_list.append("{}/{}".format(log_path, log_name))
/test/testfwk/xdevice/plugins/devicetest/core/
Dvariables.py110 self.log_path = "./log/test_run_summary.log"