Searched refs:log_path (Results 1 – 11 of 11) sorted by relevance
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
D | request.py | 93 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)
|
D | scheduler.py | 865 def start_task_log(cls, log_path): argument 867 tool_log_file = os.path.join(log_path, tool_file_name) 871 def start_encrypt_log(cls, log_path): argument 875 encrypt_log_file = os.path.join(log_path, encrypt_file_name)
|
/test/testfwk/developer_test/src/core/ |
D | utils.py | 67 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/ |
D | result_reporter.py | 217 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)
|
D | reporter_helper.py | 69 log_path = "log_path" variable in ReportConstant 312 log_path = "" variable in ExecInfo 501 exec_info.log_path = os.path.abspath(os.path.join(report_path, "log"))
|
/test/testfwk/developer_test/src/core/command/ |
D | run.py | 245 log_path = os.path.join(result_rootpath, "log") 247 os.makedirs(log_path, exist_ok=True) 250 Scheduler.start_task_log(log_path)
|
D | distribute_utils.py | 76 exec_info.log_path = os.path.join(result_rootpath, "log")
|
/test/testfwk/xdevice/src/xdevice/_core/ |
D | utils.py | 400 log_path = os.path.join(report_path, Variables.report_vars.log_dir, module_name) 402 log_path = os.path.join(report_path, Variables.report_vars.log_dir) 403 os.makedirs(log_path, exist_ok=True) 410 device_log_file = os.path.join(log_path, device_file_name)
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
D | drivers_lite.py | 1078 log_path = get_config_value('log_path', json_config.get_driver(), 1080 log_path = str(log_path.replace("/", "", 1)) if log_path.startswith( 1081 "/") else str(log_path) 1082 LOG.debug("The log path is:%s" % log_path) 1083 file_path = get_file_absolute_path(log_path,
|
/test/testfwk/developer_test/src/core/driver/ |
D | drivers.py | 128 log_path = os.path.join(report_path, Variables.report_vars.log_dir) 129 os.makedirs(log_path, exist_ok=True) 133 device_log_file = os.path.join(log_path, device_file_name)
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
D | device.py | 1070 def _get_log(self, log_path, *params): argument 1079 log_result = self.device.execute_shell_command("ls {}".format(log_path)) 1086 data_list.append("{}/{}".format(log_path, log_name))
|