[pypy-svn] r47086 - in pypy/dist/pypy/translator: cli/test js/test jvm/test
arigo at codespeak.net
arigo at codespeak.net
Tue Oct 2 10:36:02 CEST 2007
Author: arigo
Date: Tue Oct 2 10:36:01 2007
New Revision: 47086
Modified:
pypy/dist/pypy/translator/cli/test/test_float.py
pypy/dist/pypy/translator/js/test/test_rfloat.py
pypy/dist/pypy/translator/jvm/test/test_float.py
Log:
Skip the SingleFloat test on non-C backends for now.
Modified: pypy/dist/pypy/translator/cli/test/test_float.py
==============================================================================
--- pypy/dist/pypy/translator/cli/test/test_float.py (original)
+++ pypy/dist/pypy/translator/cli/test/test_float.py Tue Oct 2 10:36:01 2007
@@ -16,3 +16,6 @@
expected = fn(i)
res = self.interpret(fn, [i])
assert res == expected
+
+ def test_r_singlefloat(self):
+ py.test.skip("not implemented: single-precision floats")
Modified: pypy/dist/pypy/translator/js/test/test_rfloat.py
==============================================================================
--- pypy/dist/pypy/translator/js/test/test_rfloat.py (original)
+++ pypy/dist/pypy/translator/js/test/test_rfloat.py Tue Oct 2 10:36:01 2007
@@ -22,3 +22,6 @@
assert x != big
y = fn(x)
assert fn(x) == 9223372026854775808
+
+ def test_r_singlefloat(self):
+ py.test.skip("not implemented: single-precision floats")
Modified: pypy/dist/pypy/translator/jvm/test/test_float.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/test/test_float.py (original)
+++ pypy/dist/pypy/translator/jvm/test/test_float.py Tue Oct 2 10:36:01 2007
@@ -19,3 +19,6 @@
expected = fn(i)
res = self.interpret(fn, [i])
assert res == expected
+
+ def test_r_singlefloat(self):
+ py.test.skip("not implemented: single-precision floats")
More information about the pypy-svn
mailing list