Home
last modified time | relevance | path

Searched refs:CtsReport (Results 1 – 3 of 3) sorted by relevance

/development/tools/compare_cts_reports/
Dparse_cts_report.py37 class CtsReport: class
62 return CtsReport.STATUS_ORDER.index(status) >= CtsReport.FAIL_INDEX
121 elif (CtsReport.STATUS_ORDER.index(test_status)
122 < CtsReport.STATUS_ORDER.index(previous)):
185 summary_writer.writerow(['module_name', 'abi'] + CtsReport.STATUS_ORDER)
240 self.counter = dict.fromkeys(CtsReport.STATUS_ORDER, 0)
246 for status in CtsReport.STATUS_ORDER:
257 for status in CtsReport.STATUS_ORDER:
258 if not CtsReport.is_fail(status):
263 for key in CtsReport.STATUS_ORDER:
[all …]
Dcompare_cts_reports.py78 if parse_cts_report.CtsReport.is_fail(result_in_a):
168 elif item in parse_cts_report.CtsReport.STATUS_ORDER:
215 items = parse_cts_report.CtsReport.STATUS_ORDER + [
246 report = parse_cts_report.CtsReport(info)
Dtest_parse_cts_report.py31 report = parse_cts_report.CtsReport(info)