Home | History | Annotate | Download | only in views

Lines Matching refs:total_time

146     def _print_timing_statistics(self, total_time, run_results):
148 self._print_debug(" %6.2f total testing time" % total_time)
161 stats.setdefault(result.worker_name, {'num_tests': 0, 'total_time': 0})
163 stats[result.worker_name]['total_time'] += result.total_run_time
167 self._print_debug(" %10s: %5d tests, %6.2f secs" % (worker_name, stats[worker_name]['num_tests'], stats[worker_name]['total_time']))
224 stats.setdefault(result.shard_name, {'num_tests': 0, 'total_time': 0})
226 stats[result.shard_name]['total_time'] += result.total_run_time
232 rounded_time = round(stats[directory]['total_time'], 1)
276 def _print_one_line_summary(self, total_time, run_results):
283 serial_time = total_time - min(run_results.run_time, parallel_time)
285 speedup = (parallel_time + serial_time) / total_time
286 timing_summary = ' in %.2fs (%.2fs in rwt, %.2gx)' % (total_time, serial_time, speedup)