[Proctor-checkins] CVS: Proctor/proctorlib runner.py,1.11,1.12
Status: Alpha
Brought to you by:
doughellmann
From: Doug H. <dou...@us...> - 2005-04-17 13:50:51
|
Update of /cvsroot/proctor/Proctor/proctorlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2815/proctorlib Modified Files: runner.py Log Message: Re-establish TestResult manipulation for interleaved mode to get the right summary Index: runner.py =================================================================== RCS file: /cvsroot/proctor/Proctor/proctorlib/runner.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** runner.py 17 Apr 2005 13:46:58 -0000 1.11 --- runner.py 17 Apr 2005 13:50:42 -0000 1.12 *************** *** 238,242 **** def addError(self, test, err): trace.into('TestResult', 'addError', test=test, err=err) ! #unittest.TestResult.addError(self, test, err) print 'ERROR' print self._exc_info_to_string(err, test) --- 238,242 ---- def addError(self, test, err): trace.into('TestResult', 'addError', test=test, err=err) ! unittest.TestResult.addError(self, test, err) print 'ERROR' print self._exc_info_to_string(err, test) *************** *** 247,251 **** def addFailure(self, test, err): trace.into('TestResult', 'addFailure', test=test, err=err) ! #unittest.TestResult.addFailure(self, test, err) print 'FAIL' print self._exc_info_to_string(err, test) --- 247,251 ---- def addFailure(self, test, err): trace.into('TestResult', 'addFailure', test=test, err=err) ! unittest.TestResult.addFailure(self, test, err) print 'FAIL' print self._exc_info_to_string(err, test) |