[Jython-checkins] jython: Skipping test in test_charmapcodec.

frank.wierzbicki jython-checkins at python.org
Mon Feb 11 22:23:30 CET 2013


http://hg.python.org/jython/rev/7f4f0d642785
changeset:   7041:7f4f0d642785
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Mon Feb 11 13:23:08 2013 -0800
summary:
  Skipping test in test_charmapcodec.

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


diff --git a/Lib/test/test_charmapcodec.py b/Lib/test/test_charmapcodec.py
--- a/Lib/test/test_charmapcodec.py
+++ b/Lib/test/test_charmapcodec.py
@@ -40,6 +40,11 @@
         self.assertEqual(u'dxf'.encode(codecname), 'dabcf')
         self.assertEqual(u'dxfx'.encode(codecname), 'dabcfabc')
 
+    # This test isn't working on Ubuntu on an Apple Intel powerbook,
+    # Jython 2.7b1+ (default:6b4a1088566e, Feb 10 2013, 14:36:47) 
+    # [OpenJDK 64-Bit Server VM (Oracle Corporation)] on java1.7.0_09
+    @unittest.skipIf(test.test_support.is_jython,
+                     "FIXME: Currently not working on jython")
     def test_constructory(self):
         self.assertEqual(unicode('ydef', codecname), u'def')
         self.assertEqual(unicode('defy', codecname), u'def')

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


More information about the Jython-checkins mailing list