Searched refs:ReportStatus (Results 1 – 2 of 2) sorted by relevance
| /Zephyr-latest/scripts/pylib/twister/twisterlib/ |
| D | reports.py | 23 class ReportStatus(str, Enum): class 107 ET.SubElement(eleTestcase, ReportStatus.SKIP, type=f"{tc_type}", message=f"{reason}") 110 el = ET.SubElement(eleTestcase, ReportStatus.FAIL, type="failure", message=f"{reason}") 115 el = ET.SubElement(eleTestcase, ReportStatus.ERROR, type="failure", message=f"{reason}") 122 ET.SubElement(eleTestcase, ReportStatus.SKIP, type="build", message="built only") 131 ReportStatus.SKIP,
|
| D | harness.py | 26 from twisterlib.reports import ReportStatus 620 if elem.tag == ReportStatus.SKIP: 622 elif elem.tag == ReportStatus.FAIL:
|