[pypy-svn] r48037 - pypy/dist/pypy/lang/smalltalk/tool

tverwaes at codespeak.net tverwaes at codespeak.net
Fri Oct 26 12:14:48 CEST 2007


Author: tverwaes
Date: Fri Oct 26 12:14:47 2007
New Revision: 48037

Modified:
   pypy/dist/pypy/lang/smalltalk/tool/analyseimage.py
Log:
set back to tinybenchmarks


Modified: pypy/dist/pypy/lang/smalltalk/tool/analyseimage.py
==============================================================================
--- pypy/dist/pypy/lang/smalltalk/tool/analyseimage.py	(original)
+++ pypy/dist/pypy/lang/smalltalk/tool/analyseimage.py	Fri Oct 26 12:14:47 2007
@@ -37,6 +37,7 @@
     # Should get this from w_object
     w_smallint_class = image.special(constants.SO_SMALLINTEGER_CLASS)
     s_class = w_object.shadow_of_my_class()
+    #w_method = s_class.lookup("benchFib")
     w_method = s_class.lookup("tinyBenchmarks")
 
     assert w_method
@@ -65,7 +66,7 @@
                 counter = 0
                 sys.stderr.write("#")
         except interpreter.ReturnFromTopLevel, e:
-            assert e.object.value == abs(int)
+            print e.object
             return
         except:
             if hasattr(interp.w_active_context,"currentBytecode"):



More information about the Pypy-commit mailing list