[pypy-commit] pypy default: Skip this new unicode test as not working on CLI and JVM.

arigo noreply at buildbot.pypy.org
Thu Jul 26 10:49:54 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r56458:98e2050e4f1c
Date: 2012-07-26 10:05 +0200
http://bitbucket.org/pypy/pypy/changeset/98e2050e4f1c/

Log:	Skip this new unicode test as not working on CLI and JVM.

diff --git a/pypy/translator/cli/test/test_unicode.py b/pypy/translator/cli/test/test_unicode.py
--- a/pypy/translator/cli/test/test_unicode.py
+++ b/pypy/translator/cli/test/test_unicode.py
@@ -21,3 +21,6 @@
 
     def test_inplace_add(self):
         py.test.skip("CLI tests can't have string as input arguments")
+
+    def test_strformat_unicode_arg(self):
+        py.test.skip('fixme!')
diff --git a/pypy/translator/jvm/test/test_unicode.py b/pypy/translator/jvm/test/test_unicode.py
--- a/pypy/translator/jvm/test/test_unicode.py
+++ b/pypy/translator/jvm/test/test_unicode.py
@@ -30,3 +30,6 @@
             return const
         res = self.interpret(fn, [])
         assert res == const
+
+    def test_strformat_unicode_arg(self):
+        py.test.skip('fixme!')


More information about the pypy-commit mailing list