~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testsweet.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-05 02:53:57 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: aaron.bentley@utoronto.ca-20050805025357-9d90b2e4c066eb4b
Switched from text-id to hashcache for merge optimization

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