[pypy-svn] r78625 - pypy/branch/jit-unroll-loops/pypy/jit/tool/test

arigo at codespeak.net arigo at codespeak.net
Sun Oct 31 16:47:20 CET 2010


Author: arigo
Date: Sun Oct 31 16:47:18 2010
New Revision: 78625

Modified:
   pypy/branch/jit-unroll-loops/pypy/jit/tool/test/test_jitoutput.py
Log:
Fix.


Modified: pypy/branch/jit-unroll-loops/pypy/jit/tool/test/test_jitoutput.py
==============================================================================
--- pypy/branch/jit-unroll-loops/pypy/jit/tool/test/test_jitoutput.py	(original)
+++ pypy/branch/jit-unroll-loops/pypy/jit/tool/test/test_jitoutput.py	Sun Oct 31 16:47:18 2010
@@ -33,13 +33,13 @@
     assert info.tracing_no == 1
     assert info.asm_no == 1
     assert info.blackhole_no == 1
-    assert info.backend_no == 1
+    assert info.backend_no == 2
     assert info.ops.total == 2
     assert info.recorded_ops.total == 2
     assert info.recorded_ops.calls == 0
     assert info.guards == 1
-    assert info.opt_ops == 6
-    assert info.opt_guards == 1
+    assert info.opt_ops == 11
+    assert info.opt_guards == 2
     assert info.forcings == 0
 
 DATA = '''Tracing:         1       0.006992



More information about the Pypy-commit mailing list