[Jython-checkins] jython: Add skip to test.test_logging avoiding hang in regrtest.

jeff.allen jython-checkins at python.org
Mon May 19 10:40:14 CEST 2014


http://hg.python.org/jython/rev/06161ebf74ee
changeset:   7264:06161ebf74ee
user:        Jeff Allen <ja.py at farowl.co.uk>
date:        Mon May 19 09:02:22 2014 +0100
summary:
  Add skip to test.test_logging avoiding hang in regrtest.

files:
  Lib/test/test_logging.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -923,6 +923,8 @@
         self.tcpserver.finished.wait(2.0)
         return self.tcpserver.log_output
 
+    @unittest.skipIf(os.name=='java' and os._name=='nt', 
+        'Blocks test completion on Jython Windows.')
     def test_output(self):
         # The log message sent to the SocketHandler is properly received.
         logger = logging.getLogger("tcp")

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list