| 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:
|
|
|