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

Unified Diff: tools/test.py

Issue 6822046: Remove semicolons from tools/test.py (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.py
===================================================================
--- tools/test.py (revision 7581)
+++ tools/test.py (working copy)
@@ -387,11 +387,11 @@
def Run(self):
self.BeforeRun()
- result = None;
+ result = None
try:
result = self.RunCommand(self.GetCommand())
except:
- self.terminate = True;
+ self.terminate = True
raise BreakNowException("Used pressed CTRL+C or IO went wrong")
finally:
self.AfterRun(result)
@@ -713,7 +713,7 @@
def RunTestCases(cases_to_run, progress, tasks):
progress = PROGRESS_INDICATORS[progress](cases_to_run)
- result = 0;
+ result = 0
try:
result = progress.Run(tasks)
except Exception, e:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698