SVN: zope.testing/branches/benji-parallelize-subprocesses/src/zope/testing/testrunner/runner.py fix a bug in a bug fix that caused anything written to stderr by a test
Benji York <[email protected]>
| Newsgroups | gmane.comp.web.zope.zope3.cvs |
|---|---|
| Message-ID | <20080705203641.7137D399A7__3920.26364938847$1215290284$gmane$org@mail.zope.org> |
Log message for revision 88045:
fix a bug in a bug fix that caused anything written to stderr by a test
to be swallowed; needs tests
Changed:
U zope.testing/branches/benji-parallelize-subprocesses/src/zope/testing/testrunner/runner.py
-=-
Modified: zope.testing/branches/benji-parallelize-subprocesses/src/zope/testing/testrunner/runner.py
===================================================================
--- zope.testing/branches/benji-parallelize-subprocesses/src/zope/testing/testrunner/runner.py 2008-07-05 19:21:00 UTC (rev 88044)
+++ zope.testing/branches/benji-parallelize-subprocesses/src/zope/testing/testrunner/runner.py 2008-07-05 20:36:40 UTC (rev 88045)
@@ -425,6 +425,7 @@
except KeyboardInterrupt:
raise
except:
+ sys.stderr.write(line)
continue
while nfail > 0: