~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/__init__.py

  • Committer: Lalo Martins
  • Date: 2005-09-15 15:16:12 UTC
  • mfrom: (1185.1.18)
  • mto: (1185.1.22)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: lalo@exoweb.net-20050915151611-86c5de4298bb71f9
merging from integration again.

This is a "checkpoint" commit; the tests don't actually pass, but all the
really hard stuff has been merged (in particular, Aaron's new ancestor:
namespace was moved to revisionspec).

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        
75
75
        self._log_file_name = name
76
76
 
77
 
    def run(self, result):
78
 
        self.apply_redirected(None, None, None,
79
 
                              unittest.TestCase.run, self, result)
80
 
        
81
77
    def tearDown(self):
82
78
        logging.getLogger('').removeHandler(self._log_hdlr)
83
79
        bzrlib.trace.enable_default_logging()
85
81
        self._log_file.close()
86
82
        unittest.TestCase.tearDown(self)
87
83
 
88
 
 
89
84
    def log(self, *args):
90
85
        logging.debug(*args)
91
86
 
320
315
                   'bzrlib.selftest.versioning',
321
316
                   'bzrlib.selftest.whitebox',
322
317
                   'bzrlib.selftest.testmerge3',
 
318
                   'bzrlib.selftest.testmerge',
323
319
                   'bzrlib.selftest.testhashcache',
324
320
                   'bzrlib.selftest.teststatus',
325
321
                   'bzrlib.selftest.testlog',
326
322
                   'bzrlib.selftest.blackbox',
327
323
                   'bzrlib.selftest.testrevisionnamespaces',
328
324
                   'bzrlib.selftest.testbranch',
 
325
                   'bzrlib.selftest.testremotebranch',
329
326
                   'bzrlib.selftest.testrevision',
330
327
                   'bzrlib.selftest.test_merge_core',
331
328
                   'bzrlib.selftest.test_smart_add',