[Jython-checkins] jython: Add expected failures to regrtest.py for Posix platforms.

jeff.allen jython-checkins at python.org
Sun Nov 1 19:05:55 EST 2015


https://hg.python.org/jython/rev/0c7f3b5e2d06
changeset:   7790:0c7f3b5e2d06
user:        Jeff Allen <ja.py at farowl.co.uk>
date:        Sun Nov 01 23:19:24 2015 +0000
summary:
  Add expected failures to regrtest.py for Posix platforms.

Complementary change set to 7b1ad371113e suppressing tests found to fail on
Ubuntu 14.04, and a group of tests that (without themselves failing) cause file
handle exhaustion (issue #2420).

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


diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -1364,6 +1364,25 @@
         test_runpy             # OSError: unlink()
         test_urllib2           # file not on local host (likely Windows only)
         """,
+
+    'java.posix':   # Expected to fail on Linux
+        """
+        test_classpathimporter  # Fails in test_loader_get_code
+        test_codecencodings_tw  # Fails in test_multibytecodec_support.py
+        test_jython_launcher    # /usr/bin/env: python2.7 -E: No such file or directory
+
+        # These leak file handles on a grand scale (observed on Ubuntu 14.04),
+        # causing failures elsewhere, but they don't actually fail.
+        test_docxmlrpc          #  206 leaked handles issue 2320
+        test_httpservers        #  721 leaked handles issue 2320
+        ## test_imaplib            #   92 leaked handles issue 2320 (tolerable)
+        test_socketserver       # 1344 leaked handles issue 2320
+        test_telnetlib          # 1588 leaked handles issue 2320
+        ## test_timeout            #  123 leaked handles issue 2320 (tolerable)
+        test_urllib2_localnet   #  763 leaked handles issue 2320
+        test_xmlrpc             #  453 leaked handles issue 2320
+
+        """
 }
 
 _platform = sys.platform

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


More information about the Jython-checkins mailing list