Lines Matching refs:result

27     def handle_ptest_result(self, k, status, result, machine):  argument
33 for suite in result['ptestresult.sections']:
39 if 'duration' in result['ptestresult.sections'][suite]:
40 … self.ptests[machine][suite]['duration'] = result['ptestresult.sections'][suite]['duration']
41 if 'timeout' in result['ptestresult.sections'][suite]:
52 if 'ptestresult.sections' in result and suite not in result['ptestresult.sections']:
55 if suite + "." + suite1 in result['ptestresult.sections']:
77 def handle_ltptest_result(self, k, status, result, machine): argument
83 for suite in result['ltpresult.sections']:
86 if 'duration' in result['ltpresult.sections'][suite]:
87 … self.ltptests[machine][suite]['duration'] = result['ltpresult.sections'][suite]['duration']
88 if 'timeout' in result['ltpresult.sections'][suite]:
96 if 'ltpresult.sections' in result and suite not in result['ltpresult.sections']:
99 if suite + "." + suite1 in result['ltpresult.sections']:
109 def handle_ltpposixtest_result(self, k, status, result, machine): argument
115 for suite in result['ltpposixresult.sections']:
118 if 'duration' in result['ltpposixresult.sections'][suite]:
119 …self.ltpposixtests[machine][suite]['duration'] = result['ltpposixresult.sections'][suite]['duratio…
126 if 'ltpposixresult.sections' in result and suite not in result['ltpposixresult.sections']:
129 if suite + "." + suite1 in result['ltpposixresult.sections']:
141 result = testresult.get('result', [])
142 for k in result:
143 test_status = result[k].get('status', [])
145 if not self.handle_ptest_result(k, test_status, result, machine):
148 self.handle_ltptest_result(k, test_status, result, machine)
150 self.handle_ltpposixtest_result(k, test_status, result, machine)
218 result = testresults[testsuite][resultid]['result']
219 test_case_result = result.get(selected_test_case_only, {})
249 result = testresults[testsuite].get(raw_test, {})
250 if result:
251 raw_results[testsuite] = {raw_test: result}
266 result = testresults[testsuite][resultid]
267 machine = result['configuration']['MACHINE']
270 for key in result['result'].keys():
280 test_count_report = self.get_aggregated_test_result(logger, result, machine)
282 test_count_report['testseries'] = result['configuration']['TESTSERIES']