~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testsweet.py

  • Committer: Robert Collins
  • Date: 2005-08-23 07:37:19 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050823073719-b9ed0f9a8a5de02d
remove some no-op lines

Show diffs side-by-side

added added

removed removed

Lines of Context:
303
303
        self._name = name
304
304
 
305
305
    def run(self, result):
306
 
        import os
307
 
        import shutil
308
 
        import time
309
 
        
310
306
        self._setup_test_dir()
311
 
        print
312
 
    
313
307
        return super(TestSuite,self).run(result)
314
308
 
315
309
    def _setup_test_dir(self):
319
313
        TestCase.ORIG_DIR = os.getcwdu()
320
314
        TestCase.TEST_ROOT = os.path.abspath(self._name + '.tmp')
321
315
    
322
 
        print '%-30s %s' % ('running tests in', TestCase.TEST_ROOT)
 
316
        print '%-30s %s\n' % ('running tests in', TestCase.TEST_ROOT)
323
317
    
324
318
        if os.path.exists(TestCase.TEST_ROOT):
325
319
            shutil.rmtree(TestCase.TEST_ROOT)