Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: tools/testrunner/network/network_execution.py

Issue 1874973003: [test] Simplify progress indicators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/testrunner/local/progress.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 self.perfdata.UpdatePerfData(test) 196 self.perfdata.UpdatePerfData(test)
197 except Exception, e: 197 except Exception, e:
198 print("UpdatePerfData exception: %s" % e) 198 print("UpdatePerfData exception: %s" % e)
199 pass # Just keep working. 199 pass # Just keep working.
200 with self.lock: 200 with self.lock:
201 perf_key = self.perfdata.GetKey(test) 201 perf_key = self.perfdata.GetKey(test)
202 compression.Send( 202 compression.Send(
203 [constants.INFORM_DURATION, perf_key, test.duration, 203 [constants.INFORM_DURATION, perf_key, test.duration,
204 self.context.arch, self.context.mode], 204 self.context.arch, self.context.mode],
205 self.local_socket) 205 self.local_socket)
206 self.indicator.AboutToRun(test)
207 has_unexpected_output = test.suite.HasUnexpectedOutput(test) 206 has_unexpected_output = test.suite.HasUnexpectedOutput(test)
208 if has_unexpected_output: 207 if has_unexpected_output:
209 self.failed.append(test) 208 self.failed.append(test)
210 if test.output.HasCrashed(): 209 if test.output.HasCrashed():
211 self.crashed += 1 210 self.crashed += 1
212 else: 211 else:
213 self.succeeded += 1 212 self.succeeded += 1
214 self.remaining -= 1 213 self.remaining -= 1
215 self.indicator.HasRun(test, has_unexpected_output) 214 self.indicator.HasRun(test, has_unexpected_output)
216 rec.Advance() 215 rec.Advance()
(...skipping 28 matching lines...) Expand all
245 total_work += p.assigned_work 244 total_work += p.assigned_work
246 for p in self.peers: 245 for p in self.peers:
247 p.assigned_work /= total_work 246 p.assigned_work /= total_work
248 p.runtime /= total_runtime 247 p.runtime /= total_runtime
249 perf_correction = p.assigned_work / p.runtime 248 perf_correction = p.assigned_work / p.runtime
250 old_perf = p.relative_performance 249 old_perf = p.relative_performance
251 p.relative_performance = (old_perf + perf_correction) / 2.0 250 p.relative_performance = (old_perf + perf_correction) / 2.0
252 compression.Send([constants.UPDATE_PERF, p.address, 251 compression.Send([constants.UPDATE_PERF, p.address,
253 p.relative_performance], 252 p.relative_performance],
254 self.local_socket) 253 self.local_socket)
OLDNEW
« no previous file with comments | « tools/testrunner/local/progress.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698