~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testsweet.py

  • Committer: Martin Pool
  • Date: 2005-07-22 23:31:09 UTC
  • Revision ID: mbp@sourcefrog.net-20050722233109-7b030502e5311685
- selftest is less verbose by default, and takes a -v option if you want it

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
from unittest import TestResult, TestCase
42
42
 
43
 
# XXX: Don't need this anymore now we depend on python2.4
44
43
def _need_subprocess():
45
44
    sys.stderr.write("sorry, this test suite requires the subprocess module\n"
46
45
                     "this is shipped with python2.4 and available separately for 2.3\n")
170
169
 
171
170
    def log(self, msg):
172
171
        """Log a message to a progress file"""
173
 
        # XXX: The problem with this is that code that writes straight
174
 
        # to the log file won't be shown when we display the log
175
 
        # buffer; would be better to not have the in-memory buffer and
176
 
        # instead just a log file per test, which is read in and
177
 
        # displayed if the test fails.  That seems to imply one log
178
 
        # per test case, not globally.  OK?
179
172
        self._log_buf = self._log_buf + str(msg) + '\n'
180
173
        print >>self.TEST_LOG, msg
181
174
 
353
346
 
354
347
def _show_test_failure(kind, case, exc_info, out):
355
348
    from traceback import print_exception
356
 
 
357
 
    print >>out
 
349
    
358
350
    print >>out, '-' * 60
359
351
    print >>out, case
360
352