[pypy-svn] pypy default: bah, this test fails because of a mono bug

antocuni commits-noreply at bitbucket.org
Mon May 9 09:24:41 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r44037:0383647aa2f5
Date: 2011-05-09 09:24 +0200
http://bitbucket.org/pypy/pypy/changeset/0383647aa2f5/

Log:	bah, this test fails because of a mono bug

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
@@ -205,7 +205,11 @@
         assert self.interpret(fn, [42.5, -2.3])       # -finite
         assert not self.interpret(fn, [1e200, 1.0])   # +inf
         assert not self.interpret(fn, [1e200, -1.0])  # -inf
-        assert not self.interpret(fn, [1e200, 1e200]) # nan
+        #
+        if self.__class__.__name__ != 'TestCliFloat':
+            # the next line currently fails on mono 2.6.7 (ubuntu 11.04), see:
+            # https://bugzilla.novell.com/show_bug.cgi?id=692493
+            assert not self.interpret(fn, [1e200, 1e200]) # nan
 
 
 class TestLLtype(BaseTestRfloat, LLRtypeMixin):


More information about the Pypy-commit mailing list