Searched refs:report_xml (Results 1 - 3 of 3) sorted by relevance
/test/testfwk/xdevice/src/xdevice/_core/context/ |
H A D | handler.py | 37 def handle_repeat_result(report_xml, report_path, round_folder=""): 39 return report_xml 44 target_path = os.path.join(round_path, os.path.basename(report_xml)) 45 shutil.move(report_xml, target_path) 49 def update_report_xml(report_xml, props): 51 if not os.path.exists(report_xml) or not props: 54 root = ElementTree.parse(report_xml).getroot() 56 LOG.error(f"parse result xml error! xml file {report_xml}") 63 result_fd = os.open(report_xml, os.O_CREAT | os.O_WRONLY | os.O_TRUNC, FilePermission.mode_644)
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | cpp_driver_lite.py | 424 for report_xml in files: 425 if report_xml.endswith(".xml"): 426 filepath = report_path + report_xml 430 self.result)[0], report_xml)) 436 for report_xml in os.listdir(report_path): 437 if report_xml.endswith(".xml"): 438 filepath = report_path + report_xml 439 shutil.copy(filepath, os.path.join(os.path.split(self.result)[0], report_xml)) 536 for report_xml in files: 537 if report_xml [all...] |
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | report.py | 33 report_xml = "report.xml" variable in ReportConstants 58 testsuites.set("name", ReportConstants.report_xml)
|
Completed in 3 milliseconds