From: <pj...@us...> - 2009-03-16 23:26:39
|
Revision: 6097 http://jython.svn.sourceforge.net/jython/?rev=6097&view=rev Author: pjenvey Date: 2009-03-16 23:26:18 +0000 (Mon, 16 Mar 2009) Log Message: ----------- o re-enable test_unicode w/out the idna test o test_marshal now passes Modified Paths: -------------- trunk/jython/Lib/test/regrtest.py trunk/jython/Lib/test/test_unicode.py Modified: trunk/jython/Lib/test/regrtest.py =================================================================== --- trunk/jython/Lib/test/regrtest.py 2009-03-14 23:23:10 UTC (rev 6096) +++ trunk/jython/Lib/test/regrtest.py 2009-03-16 23:26:18 UTC (rev 6097) @@ -1475,7 +1475,6 @@ test_frozen test_gc test_iterlen - test_marshal test_multibytecodec test_multibytecodec_support test_peepholer @@ -1484,7 +1483,6 @@ test_stringprep test_transformer test_ucn - test_unicode test_unicodedata test_zipimport """, Modified: trunk/jython/Lib/test/test_unicode.py =================================================================== --- trunk/jython/Lib/test/test_unicode.py 2009-03-14 23:23:10 UTC (rev 6096) +++ trunk/jython/Lib/test/test_unicode.py 2009-03-16 23:26:18 UTC (rev 6097) @@ -712,6 +712,9 @@ self.assertEqual(x, y) def test_main(): + if test_support.is_jython: + # http://bugs.jython.org/issue1153 + del UnicodeTest.test_codecs_idna test_support.run_unittest(UnicodeTest) if __name__ == "__main__": This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |