[pypy-svn] r75427 - pypy/trunk/pypy/rlib/test

arigo at codespeak.net arigo at codespeak.net
Wed Jun 16 17:10:25 CEST 2010


Author: arigo
Date: Wed Jun 16 17:10:23 2010
New Revision: 75427

Modified:
   pypy/trunk/pypy/rlib/test/test_runicode.py
Log:
Skip tests.


Modified: pypy/trunk/pypy/rlib/test/test_runicode.py
==============================================================================
--- pypy/trunk/pypy/rlib/test/test_runicode.py	(original)
+++ pypy/trunk/pypy/rlib/test/test_runicode.py	Wed Jun 16 17:10:23 2010
@@ -227,6 +227,10 @@
         self.checkencode(u"\N{GREEK CAPITAL LETTER PSI}", "mbcs") # a ?
 
 class TestTranslation(object):
+    def setup_class(cls):
+        if len(runicode.UNICHR(0x10000)) == 2:
+            py.test.skip("these tests cannot run on the llinterp")
+
     def test_utf8(self):
         from pypy.rpython.test.test_llinterp import interpret
         def f(x):



More information about the Pypy-commit mailing list