Author: Philip Jenvey <[email protected]>
Branch: 
Changeset: r59491:0ec73a18d8cc
Date: 2012-12-18 12:20 -0800
http://bitbucket.org/pypy/pypy/changeset/0ec73a18d8cc/

Log:    apply the TestOOtype skips to jvm/cli explicitly string_to_float
        seems to work whereas parts_to_float doesn't

diff --git a/pypy/rpython/test/test_rfloat.py b/pypy/rpython/test/test_rfloat.py
--- a/pypy/rpython/test/test_rfloat.py
+++ b/pypy/rpython/test/test_rfloat.py
@@ -404,5 +404,5 @@
     def test_formatd_huge(self):
         skip('formatd is broken on ootype')
 
-    def test_string_to_float(self):
-        skip('string_to_float is broken on ootype')
+    def test_parts_to_float(self):
+        skip('parts_to_float is broken on ootype')
diff --git a/pypy/translator/cli/test/test_float.py 
b/pypy/translator/cli/test/test_float.py
--- a/pypy/translator/cli/test/test_float.py
+++ b/pypy/translator/cli/test/test_float.py
@@ -24,3 +24,15 @@
 
     def test_r_singlefloat(self):
         py.test.skip("not implemented: single-precision floats")
+
+    def test_formatd(self):
+        py.test.skip('formatd is broken on ootype')
+
+    def test_formatd_repr(self):
+        py.test.skip('formatd is broken on ootype')
+
+    def test_formatd_huge(self):
+        py.test.skip('formatd is broken on ootype')
+
+    def test_parts_to_float(self):
+        py.test.skip('parts_to_float is broken on ootype')
diff --git a/pypy/translator/jvm/test/test_float.py 
b/pypy/translator/jvm/test/test_float.py
--- a/pypy/translator/jvm/test/test_float.py
+++ b/pypy/translator/jvm/test/test_float.py
@@ -33,3 +33,15 @@
 
         res = self.interpret(fn, [1])
         assert res == "10.0"
+
+    def test_formatd(self):
+        py.test.skip('formatd is broken on ootype')
+
+    def test_formatd_repr(self):
+        py.test.skip('formatd is broken on ootype')
+
+    def test_formatd_huge(self):
+        py.test.skip('formatd is broken on ootype')
+
+    def test_parts_to_float(self):
+        py.test.skip('parts_to_float is broken on ootype')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to