| Index: tools/testrunner/local/progress.py
 | 
| diff --git a/tools/testrunner/local/progress.py b/tools/testrunner/local/progress.py
 | 
| index e27344a2a4164a5d9c75f6fabfcd531663ecdd48..33e27e154b31b20c800841ba755f527aa63eb9ca 100644
 | 
| --- a/tools/testrunner/local/progress.py
 | 
| +++ b/tools/testrunner/local/progress.py
 | 
| @@ -54,9 +54,6 @@ class ProgressIndicator(object):
 | 
|    def Done(self):
 | 
|      pass
 | 
|  
 | 
| -  def AboutToRun(self, test):
 | 
| -    pass
 | 
| -
 | 
|    def HasRun(self, test, has_unexpected_output):
 | 
|      pass
 | 
|  
 | 
| @@ -147,10 +144,6 @@ class SimpleProgressIndicator(ProgressIndicator):
 | 
|  
 | 
|  class VerboseProgressIndicator(SimpleProgressIndicator):
 | 
|  
 | 
| -  def AboutToRun(self, test):
 | 
| -    print 'Starting %s...' % test.GetLabel()
 | 
| -    sys.stdout.flush()
 | 
| -
 | 
|    def HasRun(self, test, has_unexpected_output):
 | 
|      if has_unexpected_output:
 | 
|        if test.output.HasCrashed():
 | 
| @@ -201,10 +194,8 @@ class CompactProgressIndicator(ProgressIndicator):
 | 
|      self.PrintProgress('Done')
 | 
|      print ""  # Line break.
 | 
|  
 | 
| -  def AboutToRun(self, test):
 | 
| -    self.PrintProgress(test.GetLabel())
 | 
| -
 | 
|    def HasRun(self, test, has_unexpected_output):
 | 
| +    self.PrintProgress(test.GetLabel())
 | 
|      if has_unexpected_output:
 | 
|        self.ClearLine(self.last_status_length)
 | 
|        self.PrintFailureHeader(test)
 | 
| 
 |