[issue7857] test_logging fails

2010-02-08 Thread Vinay Sajip
Vinay Sajip added the comment: - Original Message > From: Antoine Pitrou > > There are still random failures: > Ouch. I'm not sure that I can debug this quickly, because the tests work on all platforms I've got access to (Windows XP, Linux Jaunty) and even where they fail, the ve

[issue7857] test_logging fails

2010-02-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: There are still random failures: test test_logging failed -- Traceback (most recent call last): File "/home2/buildbot/slave/trunk.loewis-sun/build/Lib/test/test_logging.py", line 1612, in test_listen_config_10_ok ], stream=output) File "/home2/buildbot

[issue7857] test_logging fails

2010-02-06 Thread Vinay Sajip
Vinay Sajip added the comment: Tests now seem to be fine. Thanks, Benjamin Peterson, for the fix. -- status: open -> closed ___ Python tracker ___ ___

[issue7857] test_logging fails

2010-02-06 Thread Vinay Sajip
Changes by Vinay Sajip : -- priority: critical -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue7857] test_logging fails

2010-02-05 Thread Florent Xicluna
Florent Xicluna added the comment: You may use the decorator @unittest.skip("see issue #7857") for these tests, until it's fixed. (or @unittest.expectedFailure, if you want to run them anyway) http://docs.python.org/dev/library/unittest.html#unittest.skip -- _

[issue7857] test_logging fails

2010-02-05 Thread Vinay Sajip
Vinay Sajip added the comment: Further update done to disable listening tests for now (r77986). Will try to investigate these - the trouble is, they work on my system :-( -- status: pending -> open ___ Python tracker

[issue7857] test_logging fails

2010-02-05 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked into trunk with following changes: - use of test_support.find_unused_port() - if connection is refused, a finally clause shuts down the server thread. Marked as pending awaiting testing of these changes on buildbots. -- resolution: -> fix

[issue7857] test_logging fails

2010-02-05 Thread Florent Xicluna
Florent Xicluna added the comment: It could take benefit of "test_support.find_unused_port". -- components: +Library (Lib) keywords: +buildbot nosy: +flox ___ Python tracker ___

[issue7857] test_logging fails

2010-02-05 Thread Antoine Pitrou
New submission from Antoine Pitrou : First, listening and/or connecting often fails. Second, the test should use try/finally to release all resources even in case of failure. This is breaking most buildbots currently: http://www.python.org/dev/buildbot/trunk/ [snip] test_listen_config_1_ok (