[pypy-svn] r54618 - pypy/dist/pypy/translator/goal

arigo at codespeak.net arigo at codespeak.net
Sat May 10 13:25:37 CEST 2008


Author: arigo
Date: Sat May 10 13:25:37 2008
New Revision: 54618

Modified:
   pypy/dist/pypy/translator/goal/gcbench.py
Log:
Change this test, which fails in a jvm translation
probably due to tiny rounding differences.


Modified: pypy/dist/pypy/translator/goal/gcbench.py
==============================================================================
--- pypy/dist/pypy/translator/goal/gcbench.py	(original)
+++ pypy/dist/pypy/translator/goal/gcbench.py	Sat May 10 13:25:37 2008
@@ -132,7 +132,7 @@
     for d in depths:
         time_construction(d)
 
-    if long_lived_tree is None or array[1000] != 1.0/1000:
+    if long_lived_tree is None or array[1024] != 1.0/1024:
         println("FAILED")
         return
 



More information about the Pypy-commit mailing list