[Jython-checkins] jython: Add more skips.

frank.wierzbicki jython-checkins at python.org
Wed May 2 00:03:06 CEST 2012


http://hg.python.org/jython/rev/23d0189442da
changeset:   6637:23d0189442da
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Tue May 01 15:02:58 2012 -0700
summary:
  Add more skips.

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


diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
--- a/Lib/test/test_tarfile.py
+++ b/Lib/test/test_tarfile.py
@@ -1099,6 +1099,7 @@
     def test_iso8859_1_filename(self):
         self._test_unicode_filename("iso8859-1")
 
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working in Jython")
     def test_utf7_filename(self):
         self._test_unicode_filename("utf7")
 
@@ -1176,6 +1177,7 @@
         tar.addfile(t)
         tar.close()
 
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working in Jython")
     def test_error_handlers(self):
         # Test if the unicode error handlers work correctly for characters
         # that cannot be expressed in a given encoding.

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


More information about the Jython-checkins mailing list