[Zope3-checkins]
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
benji at zope.com
Sat Jul 5 16:36:41 EDT 2008
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:
More information about the Zope3-Checkins
mailing list