Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dhandlers.py108 def _verify_ztest_suite_name(self, harness_status, detected_suite_names, handler_time): argument
121 self._missing_suite_name(expected_suite_names, handler_time)
129 self._missing_suite_name(expected_suite_names, handler_time)
131 def _missing_suite_name(self, expected_suite_names, handler_time): argument
137 self.instance.execution_time = handler_time
146 def _final_handle_actions(self, harness, handler_time): argument
154 handler_time
160 self.instance.execution_time = handler_time
321 def _update_instance_info(self, harness, handler_time): argument
322 self.instance.execution_time = handler_time
[all …]
Dreports.py178 handler_time = suite.get('execution_time', 0)
180 duration += float(handler_time)
188 tc_duration = tc.get('execution_time', handler_time)
252 handler_time = ts.get('execution_time', 0)
254 duration += float(handler_time)
270 tc_duration = tc.get('execution_time', handler_time)
281 name, classname, ts_status, ts_status, reason, handler_time, runnable,
340 handler_time = instance.metrics.get('handler_time', 0)
651 handler_time = instance.metrics.get('handler_time', 0)
652 if float(handler_time) > 0:
/Zephyr-latest/scripts/tests/twister/
Dtest_handlers.py140 handler_time = mock.Mock()
142 handler._final_handle_actions(harness, handler_time)
145 assert handler.instance.execution_time == handler_time
151 handler._final_handle_actions(harness, handler_time)
179 handler_time = mock.Mock()
186 handler_time
204 handler_time = mock.Mock()
206 handler._missing_suite_name(expected_suite_names, handler_time)
209 assert handler.instance.execution_time == handler_time
538 handler_time = 59
[all …]