[pypy-svn] r75579 - pypy/trunk/pypy/translator/backendopt/test

arigo at codespeak.net arigo at codespeak.net
Fri Jun 25 12:23:58 CEST 2010


Author: arigo
Date: Fri Jun 25 12:23:56 2010
New Revision: 75579

Modified:
   pypy/trunk/pypy/translator/backendopt/test/test_mallocprediction.py
Log:
Bah.


Modified: pypy/trunk/pypy/translator/backendopt/test/test_mallocprediction.py
==============================================================================
--- pypy/trunk/pypy/translator/backendopt/test/test_mallocprediction.py	(original)
+++ pypy/trunk/pypy/translator/backendopt/test/test_mallocprediction.py	Fri Jun 25 12:23:56 2010
@@ -169,7 +169,7 @@
     t, graph = rtype(entrypoint, [int])
     total0 = preparation(t, t.graphs, heuristic=heuristic)
     total = clever_inlining_and_malloc_removal(t)
-    assert total0 + total == 16
+    assert total == 5     # XXX total0 appears to vary
 
 def test_richards():
     from pypy.translator.goal.richards import entry_point



More information about the Pypy-commit mailing list